mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
16 lines
218 B
Nix
16 lines
218 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
qtdeclarative,
|
|
libcanberra,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "knotifications";
|
|
|
|
extraNativeBuildInputs = [ qttools ];
|
|
extraBuildInputs = [
|
|
qtdeclarative
|
|
libcanberra
|
|
];
|
|
}
|