mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 08:01:14 +00:00
12 lines
214 B
Nix
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 ];
|
|
}
|