12 stdenvNoCC.mkDerivation rec {
13 pname = "breeze-hacked-cursor-theme";
14 version = "unstable-2024-1-28";
16 src = fetchFromGitHub {
19 rev = "79dcc8925136ebe12612c6f124036c1aa816ebbe";
20 hash = "sha256-gm50qgHdbjDYMz/ksbDD8tMqY9AqJ23DKl4rPFNEDX8=";
24 patchShebangs build.sh recolor-cursor.sh
25 substituteInPlace Makefile \
26 --replace "~/.icons" "$out/share/icons"
28 '' + lib.optionalString (accentColor != null) ''
29 --accent-color "${accentColor}" \
30 '' + lib.optionalString (baseColor != null) ''
31 --base-color "${baseColor}" \
32 '' + lib.optionalString (borderColor != null) ''
33 --border-color "${borderColor}" \
34 '' + lib.optionalString (logoColor != null) ''
35 --logo-color "${logoColor}"
44 homepage = "https://github.com/clayrisser/breeze-hacked-cursor-theme";
45 description = "Breeze Hacked cursor theme";
46 license = licenses.gpl2Only;
47 maintainers = with maintainers; [ anomalocaris ];
48 platforms = platforms.linux;