about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/kde-frameworks/oxygen-icons.nix
blob: 4760c51abe5429372c6cb88552444fe8b4d9256a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ 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
}