nixpkgs-suyu/pkgs/development/libraries/kde-frameworks/oxygen-icons5.nix

16 lines
297 B
Nix
Raw Normal View History

2016-04-21 17:32:21 +02:00
{ kdeFramework
, lib
, extra-cmake-modules, qtbase
2016-04-21 17:32:21 +02:00
}:
kdeFramework {
name = "oxygen-icons5";
meta = {
license = lib.licenses.lgpl3Plus;
maintainers = [ lib.maintainers.ttuegel ];
};
2016-04-30 21:46:31 +02:00
outputs = [ "out" ];
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtbase ];
2016-04-21 17:32:21 +02:00
}