linux/hardened/patches/6.6: v6.6.73-hardened1 -> v6.6.75-hardened1
[NixPkgs.git] / pkgs / by-name / gr / graphite-cursors / package.nix
blobf0dac31689d4e665ea83be6bdafcb7771ac1ae02
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "graphite-cursors";
9   version = "2021-11-26";
11   src = fetchFromGitHub {
12     owner = "vinceliuice";
13     repo = pname;
14     rev = version;
15     sha256 = "sha256-Kopl2NweYrq9rhw+0EUMhY/pfGo4g387927TZAhI5/A=";
16   };
18   installPhase = ''
19     install -dm 755 $out/share/icons
20     mv dist-dark $out/share/icons/graphite-dark
21     mv dist-light $out/share/icons/graphite-light
22     mv dist-dark-nord $out/share/icons/graphite-dark-nord
23     mv dist-light-nord $out/share/icons/graphite-light-nord
24   '';
26   meta = with lib; {
27     description = "Graphite cursor theme";
28     homepage = "https://github.com/vinceliuice/Graphite-cursors";
29     license = licenses.gpl3Only;
30     platforms = platforms.all;
31     maintainers = with maintainers; [ oluceps ];
32   };