scope.nix 170 B

123456789101112
  1. {
  2. lib,
  3. newScope,
  4. llamaVersion ? "0.0.0",
  5. }:
  6. lib.makeScope newScope (
  7. self: {
  8. inherit llamaVersion;
  9. llama-cpp = self.callPackage ./package.nix { };
  10. }
  11. )