14 lines
194 B
Nix
14 lines
194 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
kdeclarative,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "purpose";
|
|
|
|
extraBuildInputs = [ qtdeclarative ];
|
|
extraPropagatedBuildInputs = [
|
|
kdeclarative
|
|
];
|
|
}
|