blob: 68480da4351a0df68fc6d67aae1fdf72aa3a2487 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
mkDerivation,
cmake,
extra-cmake-modules,
kdoctools,
karchive,
kconfig,
kcoreaddons,
ki18n,
qtbase,
}:
mkDerivation {
pname = "kpackage";
nativeBuildInputs = [
cmake
extra-cmake-modules
kdoctools
];
buildInputs = [
karchive
kconfig
kcoreaddons
ki18n
qtbase
];
patches = [
./0001-Allow-external-paths-default.patch
./0002-QDirIterator-follow-symlinks.patch
];
}
|