https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
15 lines
334 B
Nix
15 lines
334 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, kcodecs, kconfig, kcoreaddons, kwindowsystem
|
|
, libdbusmenu
|
|
, phonon
|
|
, qttools, qtx11extras
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "knotifications";
|
|
nativeBuildInputs = [ extra-cmake-modules qttools ];
|
|
buildInputs = [
|
|
kcodecs kconfig kcoreaddons kwindowsystem libdbusmenu phonon qtx11extras
|
|
];
|
|
}
|