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>
14 lines
306 B
Nix
14 lines
306 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules, kdoctools,
|
|
kdbusaddons, khotkeys, ki18n, kiconthemes, kio, kxmlgui,
|
|
sonnet
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kmenuedit";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
kdbusaddons khotkeys ki18n kiconthemes kio kxmlgui sonnet
|
|
];
|
|
}
|