| 12345678910111213141516171819 |
- {
- lib,
- newScope,
- llamaVersion ? "0.0.0",
- }:
- # We're using `makeScope` instead of just writing out an attrset
- # because it allows users to apply overlays later using `overrideScope'`.
- # Cf. https://noogle.dev/f/lib/makeScope
- lib.makeScope newScope (
- self: {
- inherit llamaVersion;
- llama-cpp = self.callPackage ./package.nix { };
- docker = self.callPackage ./docker.nix { };
- docker-min = self.callPackage ./docker.nix { interactive = false; };
- sif = self.callPackage ./sif.nix { };
- }
- )
|