Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / po / posy-cursors / package.nix
blob1b607569198a404df6f43054d80097bc23f2ac40
1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "posy-cursors";
5   version = "1.6";
7   src = fetchFromGitHub {
8     owner = "simtrami";
9     repo = "posy-improved-cursor-linux";
10     rev = "refs/tags/${version}";
11     hash = "sha256-i0N/QB5uzqHapMCDl6h6PWPJ4GOAyB1ds9qlqmZacLY=";
12   };
14   installPhase = ''
15     runHook preInstall
16     mkdir -p $out/share/icons
17     cp -r Posy_Cursor* $out/share/icons
18     runHook postInstall
19   '';
21   meta = with lib; {
22     description = "Posy's Improved Cursors for Linux";
23     homepage = "https://github.com/simtrami/posy-improved-cursor-linux";
24     platforms = platforms.unix;
25     license = licenses.unfree;
26     maintainers = with maintainers; [ mkez ];
27   };