3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/plasma-5/breeze-gtk.nix
2017-06-18 08:42:20 -05:00

9 lines
212 B
Nix

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