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-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 ];
}