Add the complete overlay structure using numtide/blueprint with: - Two overlay strategies (default and shared-nixpkgs) - goose-cli package with custom librusty_v8 fetcher - Interactive package launcher via fzf - Flake input caching utility - Comprehensive README and AGENTS.md documentation
10 lines
179 B
Nix
10 lines
179 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
pkgs.callPackage ./package.nix {
|
|
librusty_v8 = pkgs.callPackage ./librusty_v8.nix {
|
|
inherit (pkgs.callPackage ./fetchers.nix { }) fetchLibrustyV8;
|
|
};
|
|
}
|