about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/kde-frameworks/kdesu/default.nix
blob: 29a02d750762cf4427971d43d4f2afe4dcc4d362 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  mkDerivation, lib,
  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 ];
  meta.platforms = lib.platforms.linux ++ lib.platforms.freebsd;
}