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-25 23:36:15 +00:00
{ mkDerivation, extra-cmake-modules, qtbase, sassc, python3, breeze-qt5 }:
2016-04-21 16:01:22 +00:00
mkDerivation {
2022-03-06 21:28:56 +00:00
pname = "breeze-gtk";
2019-02-12 18:50:53 +00: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 20:44:36 +00:00
cmakeFlags = [ "-DWITH_GTK3_VERSION=3.22" ];
2016-04-21 16:01:22 +00:00
}