9 lines
212 B
Nix
9 lines
212 B
Nix
{ mkDerivation , extra-cmake-modules , qtbase }:
|
|
|
|
mkDerivation {
|
|
name = "breeze-gtk";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
cmakeFlags = [ "-DWITH_GTK3_VERSION=3.22" ];
|
|
buildInputs = [ qtbase ];
|
|
}
|