16 lines
218 B
Nix
16 lines
218 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qttools,
|
||
|
qtdeclarative,
|
||
|
libcanberra,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "knotifications";
|
||
|
|
||
|
extraNativeBuildInputs = [ qttools ];
|
||
|
extraBuildInputs = [
|
||
|
qtdeclarative
|
||
|
libcanberra
|
||
|
];
|
||
|
}
|