ja2-stracciatella: 0.17.0 -> 0.21.0
[NixPkgs.git] / pkgs / data / icons / gruppled-cursors / default.nix
blob4a223fc67d339e0b0337a20eb6a8c41b36afbf6c
2   stdenvNoCC,
3   fetchFromGitHub,
4   theme,
5   lib,
6 }:
8 stdenvNoCC.mkDerivation (finalAttrs: {
9   pname = "gruppled-cursors";
10   version = "1.0.0";
12   src = fetchFromGitHub {
13     owner = "nim65s";
14     repo = "gruppled-cursors";
15     rev = "v${finalAttrs.version}";
16     hash = "sha256-ejlgdogjIYevZvB23si6bEeU6qY7rWXflaUyVk5MzqU=";
17   };
19   installPhase = ''
20     mkdir -p $out/share/icons/${theme}
21     cp -r ${theme}/{cursors,index.theme} $out/share/icons/${theme}
22   '';
24   meta = with lib; {
25     description = "Gruppled Cursors theme";
26     homepage = "https://github.com/nim65s/gruppled-cursors";
27     license = licenses.gpl2Only;
28     maintainers = with maintainers; [ nim65s ];
29   };