16 lines
320 B
Nix
Raw Normal View History

{ mkDerivation
2016-04-21 10:32:21 -05:00
, lib
, extra-cmake-modules, qtbase
2016-04-21 10:32:21 -05:00
}:
mkDerivation {
2016-04-21 10:32:21 -05: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 10:32:21 -05:00
}