Files
nixpkgs/pkgs/development/libraries/kde-frameworks-5.13/kpackage/default.nix
2015-09-27 15:08:10 -05:00

23 lines
466 B
Nix

{ mkDerivation, lib
, extra-cmake-modules
, karchive
, kconfig
, kcoreaddons
, kdoctools
, ki18n
}:
mkDerivation {
name = "kpackage";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ karchive kconfig ki18n ];
propagatedBuildInputs = [ kcoreaddons ];
patches = [ ./0001-allow-external-paths.patch ];
postInstall = ''
wrapKDEProgram "$out/bin/kpackagetool5"
'';
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}