1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 09:02:46 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks/breeze-icons.nix

10 lines
271 B
Nix
Raw Normal View History

{ mkDerivation, lib, extra-cmake-modules, qtsvg }:
2016-04-21 16:32:21 +01:00
mkDerivation {
2016-04-21 16:32:21 +01:00
name = "breeze-icons";
2016-07-30 15:36:52 +01:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtsvg ];
outputs = [ "out" ]; # only runtime outputs
2016-04-21 16:32:21 +01:00
}