summary refs log tree commit diff
path: root/pkgs/data/icons
diff options
context:
space:
mode:
authorfortuneteller2k <lythe1107@gmail.com>2022-01-27 11:29:06 +0800
committerfortuneteller2k <lythe1107@gmail.com>2022-02-01 13:21:11 +0800
commit91d26f50dcb31d4525bfb1524cf0b1f1f7183775 (patch)
treed8a7ccdfe3590171e92575c99194c81ce4bde795 /pkgs/data/icons
parentcdc93e847d34da9929078d24da3645dc64ca8e92 (diff)
downloadnixpkgs-91d26f50dcb31d4525bfb1524cf0b1f1f7183775.tar
nixpkgs-91d26f50dcb31d4525bfb1524cf0b1f1f7183775.tar.gz
nixpkgs-91d26f50dcb31d4525bfb1524cf0b1f1f7183775.tar.bz2
nixpkgs-91d26f50dcb31d4525bfb1524cf0b1f1f7183775.tar.lz
nixpkgs-91d26f50dcb31d4525bfb1524cf0b1f1f7183775.tar.xz
nixpkgs-91d26f50dcb31d4525bfb1524cf0b1f1f7183775.tar.zst
nixpkgs-91d26f50dcb31d4525bfb1524cf0b1f1f7183775.zip
phinger-cursors: init at 1.1
Diffstat (limited to 'pkgs/data/icons')
-rw-r--r--pkgs/data/icons/phinger-cursors/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/data/icons/phinger-cursors/default.nix b/pkgs/data/icons/phinger-cursors/default.nix
new file mode 100644
index 00000000000..4252136cf46
--- /dev/null
+++ b/pkgs/data/icons/phinger-cursors/default.nix
@@ -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 ];
+  };
+}