summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kiconthemes/default.nix
blob: 6102bb0d4b569c969cac697f0caa588075c36b35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ kdeFramework, lib, copyPathsToStore
, extra-cmake-modules
, karchive, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg
}:

kdeFramework {
  name = "kiconthemes";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [ breeze-icons kconfigwidgets karchive ki18n kitemviews qtsvg ];
}