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>
11 lines
278 B
Nix
11 lines
278 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
kcoreaddons, kdbusaddons, ki18n, knotifications, kpty, qtbase,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kwrited";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ kcoreaddons kdbusaddons ki18n knotifications kpty qtbase ];
|
|
}
|