nixpkgs/pkgs/development/libraries/kde-frameworks-5.15/kdesu.nix

14 lines
311 B
Nix
Raw Normal View History

2015-10-10 18:50:36 +02:00
{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n, kpty
2015-09-27 17:02:10 +02:00
, kservice
}:
kdeFramework {
2015-09-27 17:02:10 +02:00
name = "kdesu";
nativeBuildInputs = [ extra-cmake-modules ];
2015-10-10 18:50:36 +02:00
buildInputs = [ kcoreaddons kservice ];
propagatedBuildInputs = [ ki18n kpty ];
2015-09-27 17:02:10 +02:00
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}