https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
18 lines
431 B
Nix
18 lines
431 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
breeze-icons, karchive, kcoreaddons, kconfigwidgets, ki18n, kitemviews,
|
|
qtbase, qtsvg, qttools,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kiconthemes";
|
|
patches = [
|
|
./default-theme-breeze.patch
|
|
];
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
breeze-icons karchive kcoreaddons kconfigwidgets ki18n kitemviews
|
|
];
|
|
propagatedBuildInputs = [ qtbase qtsvg qttools ];
|
|
}
|