depot/pkgs/development/libraries/kde-frameworks/oxygen-icons.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
261 B
Nix
Raw Normal View History

{ mkDerivation
, lib
, extra-cmake-modules
, qtbase
}:
mkDerivation {
pname = "oxygen-icons";
meta.license = lib.licenses.lgpl3Plus;
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtbase ];
outputs = [ "out" ]; # only runtime outputs
}