about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/breeze-gtk.nix
blob: 3ecc5d5e5b0d1f71b33c2b5cb74fb65e526027cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ 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" ];
}