mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
15 lines
362 B
Nix
15 lines
362 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
kcoreaddons, ki18n, kpty, kservice, qtbase,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kdesu";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ kcoreaddons ki18n kpty kservice qtbase ];
|
|
propagatedBuildInputs = [ kpty ];
|
|
outputs = [ "out" "dev" ];
|
|
patches = [ ./kdesu-search-for-wrapped-daemon-first.patch ];
|
|
}
|