nixpkgs/pkgs/data/icons/phinger-cursors/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
750 B
Nix
Raw Normal View History

2022-01-27 03:29:06 +00:00
{ lib, stdenvNoCC, fetchurl }:
stdenvNoCC.mkDerivation rec {
pname = "phinger-cursors";
2024-07-15 14:52:13 +00:00
version = "2.1";
2022-01-27 03:29:06 +00:00
src = fetchurl {
url = "https://github.com/phisch/phinger-cursors/releases/download/v${version}/phinger-cursors-variants.tar.bz2";
2024-07-15 14:52:13 +00:00
sha256 = "sha256-3bcxDGK/jg4nmKJPioZ+Svexejl1e6RcheE/OYj2Rvw=";
2022-01-27 03:29:06 +00:00
};
sourceRoot = ".";
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons
cp -r ./phinger-cursors* $out/share/icons
2022-01-27 03:29:06 +00:00
runHook postInstall
'';
meta = with lib; {
description = "Most over-engineered cursor theme";
homepage = "https://github.com/phisch/phinger-cursors";
platforms = platforms.unix;
license = licenses.cc-by-sa-40;
2023-11-17 10:03:27 +00:00
maintainers = with maintainers; [ moni ];
2022-01-27 03:29:06 +00:00
};
}