phinger-cursors: init at 1.1
This commit is contained in:
parent
cdc93e847d
commit
91d26f50dc
28
pkgs/data/icons/phinger-cursors/default.nix
Normal file
28
pkgs/data/icons/phinger-cursors/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ 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 ./ $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 ];
|
||||
};
|
||||
}
|
@ -23943,6 +23943,8 @@ with pkgs;
|
||||
|
||||
publicsuffix-list = callPackage ../data/misc/publicsuffix-list { };
|
||||
|
||||
phinger-cursors = callPackage ../data/icons/phinger-cursors { };
|
||||
|
||||
qogir-icon-theme = callPackage ../data/icons/qogir-icon-theme { };
|
||||
|
||||
qogir-theme = callPackage ../data/themes/qogir { };
|
||||
|
Loading…
Reference in New Issue
Block a user