mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 00:54:46 +00:00
13 lines
434 B
Nix
13 lines
434 B
Nix
{ 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 ];
|
|
}
|