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