nixpkgs/pkgs/desktops/plasma-5/breeze-gtk.nix

9 lines
212 B
Nix
Raw Normal View History

{ mkDerivation , extra-cmake-modules , qtbase }:
2016-04-21 16:01:22 +00:00
mkDerivation {
2016-04-21 16:01:22 +00:00
name = "breeze-gtk";
nativeBuildInputs = [ extra-cmake-modules ];
2017-05-09 14:20:39 +00:00
cmakeFlags = [ "-DWITH_GTK3_VERSION=3.22" ];
buildInputs = [ qtbase ];
2016-04-21 16:01:22 +00:00
}