mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 12:44:44 +00:00
18 lines
247 B
Nix
18 lines
247 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
qtdeclarative,
|
|
libcanberra,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "knotifications";
|
|
|
|
hasPythonBindings = true;
|
|
|
|
extraNativeBuildInputs = [ qttools ];
|
|
extraBuildInputs = [
|
|
qtdeclarative
|
|
libcanberra
|
|
];
|
|
}
|