depot/third_party/nixpkgs/pkgs/data/icons/whitesur-cursors/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

32 lines
826 B
Nix

{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "whitesur-cursors";
version = "0-unstable-2022-06-17";
src = fetchFromGitHub {
owner = "vinceliuice";
repo = "WhiteSur-cursors";
rev = "5c94e8c22de067282f4cf6d782afd7b75cdd08c8";
hash = "sha256-CFse0XZzJu+PWDcqmvIXvue+3cKX47oavZU9HYRDAg0=";
};
installPhase = ''
runHook preInstall
install -dm 755 $out/share/icons/WhiteSur-cursors
cp -r dist/* $out/share/icons/WhiteSur-cursors
runHook postInstall
'';
meta = {
description = "X-cursor theme inspired by macOS and based on capitaine-cursors";
homepage = "https://github.com/vinceliuice/WhiteSur-cursors";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ tomasajt ];
platforms = lib.platforms.linux;
};
}