mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 12:07:47 +03: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 ];
|
|
}
|