From 76557154c798b976ab468e4b4955c8ebdcb02d65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Tue, 20 May 2025 00:20:56 +0200 Subject: [PATCH] posy-cursor: drop --- nix/packages/default.nix | 1 - nix/packages/posy-cursor.nix | 23 ----------------------- 2 files changed, 24 deletions(-) delete mode 100644 nix/packages/posy-cursor.nix diff --git a/nix/packages/default.nix b/nix/packages/default.nix index d9396a07..85008c64 100644 --- a/nix/packages/default.nix +++ b/nix/packages/default.nix @@ -47,7 +47,6 @@ in rec { typst-mutilate = pkgs.callPackage ./typst-mutilate.nix {}; webtoon_downloader = pkgs.callPackage ./webtoon_downloader.nix {}; - posy-cursor = pkgs.callPackage ./posy-cursor.nix {}; nd = pkgs.callPackage ./nd {}; xbrightness = pkgs.callPackage ./xbrightness.nix {}; ffgun = pkgs.callPackage ./ffgun.nix {}; diff --git a/nix/packages/posy-cursor.nix b/nix/packages/posy-cursor.nix deleted file mode 100644 index 38328f7c..00000000 --- a/nix/packages/posy-cursor.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, -}: let - rev = "bd2bac08bf01e25846a6643dd30e2acffa9517d4"; -in - stdenv.mkDerivation { - pname = "posy-cursor"; - version = lib.substring 0 7 rev; - - src = fetchFromGitHub { - owner = "leana8959"; - repo = "posy-improved-cursor-linux"; - inherit rev; - hash = "sha256-ndxz0KEU18ZKbPK2vTtEWUkOB/KqA362ipJMjVEgzYQ="; - }; - - installPhase = '' - install -dm 0755 $out/share/icons - cp -r Posy_Cursor* $out/share/icons - ''; - }