summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/oxygen-icons5.nix
blob: 2d795bfc50ccac6b41917adb9634c1424ce53f9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ mkDerivation
, lib
, extra-cmake-modules, qtbase
}:

mkDerivation {
  name = "oxygen-icons5";
  meta = {
    license = lib.licenses.lgpl3Plus;
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qtbase ];
  outputs = [ "out" ]; # only runtime outputs
}