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

16 lines
320 B
Nix
Raw Normal View History

{ mkDerivation
2016-04-21 15:32:21 +00:00
, lib
, extra-cmake-modules, qtbase
2016-04-21 15:32:21 +00:00
}:
mkDerivation {
2016-04-21 15:32:21 +00:00
name = "oxygen-icons5";
meta = {
license = lib.licenses.lgpl3Plus;
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtbase ];
outputs = [ "out" ]; # only runtime outputs
2016-04-21 15:32:21 +00:00
}