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