posy-cursor: drop

This commit is contained in:
Primrose 2025-05-20 00:20:56 +02:00
parent c916ee362e
commit 76557154c7
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 0 additions and 24 deletions

View file

@ -47,7 +47,6 @@ in rec {
typst-mutilate = pkgs.callPackage ./typst-mutilate.nix {}; typst-mutilate = pkgs.callPackage ./typst-mutilate.nix {};
webtoon_downloader = pkgs.callPackage ./webtoon_downloader.nix {}; webtoon_downloader = pkgs.callPackage ./webtoon_downloader.nix {};
posy-cursor = pkgs.callPackage ./posy-cursor.nix {};
nd = pkgs.callPackage ./nd {}; nd = pkgs.callPackage ./nd {};
xbrightness = pkgs.callPackage ./xbrightness.nix {}; xbrightness = pkgs.callPackage ./xbrightness.nix {};
ffgun = pkgs.callPackage ./ffgun.nix {}; ffgun = pkgs.callPackage ./ffgun.nix {};

View file

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