nixpkgs/pkgs/data/icons/phinger-cursors/default.nix
InternetUnexplorer deebff0d5a phinger-cursors: fix installPhase
Running `cp -r ./ $out/share/icons` to copy the icon files to
`$out/share/icons` ends up copying the `env-vars` file as well (since
sourceRoot = .), which can lead to collisions when building the system
path.

This uses a wildcard instead, which relies on the assumption that all
variants start with `phinger-cursors`.
2022-02-05 23:50:46 -08:00

29 lines
765 B
Nix

{ lib, stdenvNoCC, fetchurl }:
stdenvNoCC.mkDerivation rec {
pname = "phinger-cursors";
version = "1.1";
src = fetchurl {
url = "https://github.com/phisch/phinger-cursors/releases/download/v${version}/phinger-cursors-variants.tar.bz2";
sha256 = "sha256-II+1x+rcjGRRVB8GYkVwkKVHNHcNaBKRb6C613901oc=";
};
sourceRoot = ".";
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons
cp -r ./phinger-cursors* $out/share/icons
runHook postInstall
'';
meta = with lib; {
description = "The most over-engineered cursor theme";
homepage = "https://github.com/phisch/phinger-cursors";
platforms = platforms.unix;
license = licenses.cc-by-sa-40;
maintainers = with maintainers; [ fortuneteller2k ];
};
}