evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / wh / whitesur-cursors / package.nix
bloba6d522dadee3ce4b9a2f361fd9f186b2e3ce4613
2   lib,
3   stdenvNoCC,
4   fetchFromGitHub,
5 }:
7 stdenvNoCC.mkDerivation {
8   pname = "whitesur-cursors";
9   version = "0-unstable-2022-06-17";
11   src = fetchFromGitHub {
12     owner = "vinceliuice";
13     repo = "WhiteSur-cursors";
14     rev = "5c94e8c22de067282f4cf6d782afd7b75cdd08c8";
15     hash = "sha256-CFse0XZzJu+PWDcqmvIXvue+3cKX47oavZU9HYRDAg0=";
16   };
18   installPhase = ''
19     runHook preInstall
20     install -dm 755 $out/share/icons/WhiteSur-cursors
21     cp -r dist/* $out/share/icons/WhiteSur-cursors
22     runHook postInstall
23   '';
25   meta = {
26     description = "X-cursor theme inspired by macOS and based on capitaine-cursors";
27     homepage = "https://github.com/vinceliuice/WhiteSur-cursors";
28     license = lib.licenses.gpl3Only;
29     maintainers = with lib.maintainers; [ tomasajt ];
30     platforms = lib.platforms.linux;
31   };