nixpkgs/pkgs/development/libraries/kde-frameworks/kpackage/default.nix

17 lines
418 B
Nix
Raw Normal View History

2016-12-18 06:26:15 -08:00
{
mkDerivation, lib,
extra-cmake-modules, kdoctools,
karchive, kconfig, kcoreaddons, ki18n, qtbase,
2016-04-21 08:32:21 -07:00
}:
mkDerivation {
2016-04-21 08:32:21 -07:00
name = "kpackage";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ karchive kconfig kcoreaddons ki18n qtbase ];
patches = [
./allow-external-paths.patch
./qdiriterator-follow-symlinks.patch
];
2016-04-21 08:32:21 -07:00
}