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

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