nixpkgs/pkgs/desktops/plasma-5/breeze-gtk.nix
Yaroslav Bolyukin 697277d7da
breeze-gtk: fix build
Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
2021-10-22 23:22:19 +03:00

18 lines
517 B
Nix

{ mkDerivation, lib, extra-cmake-modules, gtk2, qtbase, sassc, python3, breeze-qt5 }:
let inherit (lib) getLib; in
mkDerivation {
name = "breeze-gtk";
nativeBuildInputs = [ extra-cmake-modules sassc python3 python3.pkgs.pycairo breeze-qt5 ];
buildInputs = [ qtbase ];
patches = [
./patches/0001-fix-add-executable-bit.patch
];
postPatch = ''
sed -i cmake/FindGTKEngine.cmake \
-e "s|\''${KDE_INSTALL_FULL_LIBDIR}|${getLib gtk2}/lib|"
'';
cmakeFlags = [ "-DWITH_GTK3_VERSION=3.22" ];
}