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

16 lines
374 B
Nix
Raw Normal View History

2016-12-18 14:26:15 +00:00
{
mkDerivation,
extra-cmake-modules, kdoctools,
karchive, kconfig, kcoreaddons, ki18n, qtbase,
2016-04-21 15:32:21 +00:00
}:
mkDerivation {
2016-04-21 15:32:21 +00:00
name = "kpackage";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ karchive kconfig kcoreaddons ki18n qtbase ];
patches = [
2021-03-28 15:28:03 +00:00
./0001-Allow-external-paths-default.patch
./0002-QDirIterator-follow-symlinks.patch
];
2016-04-21 15:32:21 +00:00
}