From 0d1915e0b4c1d15e327fbcfbca0d26ebd129187c Mon Sep 17 00:00:00 2001 From: imnyang Date: Sat, 25 Apr 2026 13:15:26 +0900 Subject: [PATCH] refactor: update pjsk-cursor package definition to expose multiple outputs correctly --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 0653347..18e4258 100644 --- a/flake.nix +++ b/flake.nix @@ -13,7 +13,7 @@ # 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 { }; - pjsk-cursor = final.callPackage ./pkgs/pjsk-cursor/default.nix { }; + inherit (final.callPackage ./pkgs/pjsk-cursor/default.nix { }) pjsk-cursor pjsk-cursors; }; pkgs = nixpkgs.legacyPackages.${system}.extend overlay; in { @@ -21,10 +21,10 @@ packages.${system} = { inherit (pkgs) waterfox-bin xcursor-mizuki; - } // pkgs.pjsk-cursor.flat; + } // (pkgs.callPackage ./pkgs/pjsk-cursor/default.nix { }).flat; legacyPackages.${system} = { - inherit (pkgs.pjsk-cursor) pjsk-cursor pjsk-cursors; + inherit (pkgs) pjsk-cursor pjsk-cursors; }; }; }