18 lines
266 B
Nix
18 lines
266 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qtdeclarative,
|
||
|
kaccounts-integration,
|
||
|
kdeclarative,
|
||
|
prison,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "purpose";
|
||
|
|
||
|
extraBuildInputs = [ qtdeclarative ];
|
||
|
extraPropagatedBuildInputs = [
|
||
|
kaccounts-integration
|
||
|
kdeclarative
|
||
|
prison
|
||
|
];
|
||
|
}
|