depot/third_party/nixpkgs/pkgs/desktops/plasma-5/breeze-gtk.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

11 lines
352 B
Nix

{ mkDerivation, extra-cmake-modules, qtbase, sassc, python3, breeze-qt5 }:
mkDerivation {
pname = "breeze-gtk";
nativeBuildInputs = [ extra-cmake-modules sassc python3 python3.pkgs.pycairo breeze-qt5 ];
buildInputs = [ qtbase ];
patches = [
./patches/0001-fix-add-executable-bit.patch
];
cmakeFlags = [ "-DWITH_GTK3_VERSION=3.22" ];
}