nixos/fileSystems: link to mount(8) from fileSystems.*.options (#377170)
[NixPkgs.git] / pkgs / by-name / po / posy-cursors / package.nix
blob1b1a384b71c6dae2190bd042706ceaabf7d3d58f
2   lib,
3   stdenvNoCC,
4   fetchFromGitHub,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "posy-cursors";
9   version = "1.6";
11   src = fetchFromGitHub {
12     owner = "simtrami";
13     repo = "posy-improved-cursor-linux";
14     tag = version;
15     hash = "sha256-i0N/QB5uzqHapMCDl6h6PWPJ4GOAyB1ds9qlqmZacLY=";
16   };
18   installPhase = ''
19     runHook preInstall
20     mkdir -p $out/share/icons
21     cp -r Posy_Cursor* $out/share/icons
22     runHook postInstall
23   '';
25   meta = with lib; {
26     description = "Posy's Improved Cursors for Linux";
27     homepage = "https://github.com/simtrami/posy-improved-cursor-linux";
28     platforms = platforms.unix;
29     license = licenses.cc-by-nc-40;
30     maintainers = with maintainers; [ mkez ];
31   };