1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/desktops/plasma-5/breeze-gtk.nix
2017-02-27 11:49:46 -06:00

12 lines
214 B
Nix

{ plasmaPackage
, extra-cmake-modules
, qtbase
}:
plasmaPackage {
name = "breeze-gtk";
nativeBuildInputs = [ extra-cmake-modules ];
cmakeFlags = [ "-DWITH_GTK3_VERSION=3.20" ];
buildInputs = [ qtbase ];
}