refactor: reorganize pjsk-cursor into a hierarchical attribute structure with symlinkJoin groups
All checks were successful
CI / list-packages (push) Successful in 3s

This commit is contained in:
암냥 2026-04-25 12:54:19 +09:00
commit 7f154d659d
No known key found for this signature in database
2 changed files with 74 additions and 69 deletions

View file

@ -12,16 +12,17 @@
# waterfox = final.callPackage ./pkgs/waterfox/default.nix { };
# another = final.callPackage ./pkgs/another/default.nix { };
waterfox-bin = final.callPackage ./pkgs/waterfox-bin/default.nix { };
xcursor-mizuki = final.callPackage ./pkgs/xcursor-mizuki/default.nix { stdenv = final.stdenv; };
pjsk-cursor = final.callPackage ./pkgs/pjsk-cursor/default.nix { stdenv = final.stdenv; };
xcursor-mizuki = final.callPackage ./pkgs/xcursor-mizuki/default.nix { };
pjsk-cursor = final.callPackage ./pkgs/pjsk-cursor/default.nix { };
};
pkgs = nixpkgs.legacyPackages.${system}.extend overlay;
in {
overlays.default = overlay;
packages.${system} = {
inherit (pkgs) waterfox-bin xcursor-mizuki pjsk-cursor;
# default = pkgs.waterfox-bin;
inherit (pkgs) waterfox-bin xcursor-mizuki;
};
legacyPackages.${system} = (builtins.removeAttrs pkgs.pjsk-cursor [ "override" "overrideDerivation" ]);
};
}