nix: rename custom -> packages

This commit is contained in:
Primrose 2024-09-22 13:57:30 +02:00
parent 754882bf0d
commit afc2eea47a
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
24 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,26 @@
{
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
'';
}