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 - ''; - }