nixpkgs/pkgs/desktops/plasma-5/breeze-gtk.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
352 B
Nix
Raw Normal View History

2023-10-26 02:36:15 +03:00
{ mkDerivation, extra-cmake-modules, qtbase, sassc, python3, breeze-qt5 }:
2016-04-21 19:01:22 +03:00
mkDerivation {
2022-03-07 00:28:56 +03:00
pname = "breeze-gtk";
2019-02-12 21:50:53 +03:00
nativeBuildInputs = [ extra-cmake-modules sassc python3 python3.pkgs.pycairo breeze-qt5 ];
buildInputs = [ qtbase ];
patches = [
./patches/0001-fix-add-executable-bit.patch
];
2017-05-26 23:44:36 +03:00
cmakeFlags = [ "-DWITH_GTK3_VERSION=3.22" ];
2016-04-21 19:01:22 +03:00
}