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

kdeFramework {
  name = "kiconthemes";
  patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
  nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
  buildInputs = [ kconfigwidgets kitemviews qtsvg ];
  propagatedBuildInputs = [ breeze-icons ki18n ];
  postInstall = ''
    wrapQtProgram "$out/bin/kiconfinder5"
  '';
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}