mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-10-31 23:28:51 +01:00
13 lines
170 B
Nix
13 lines
170 B
Nix
|
{
|
||
|
lib,
|
||
|
newScope,
|
||
|
llamaVersion ? "0.0.0",
|
||
|
}:
|
||
|
|
||
|
lib.makeScope newScope (
|
||
|
self: {
|
||
|
inherit llamaVersion;
|
||
|
llama-cpp = self.callPackage ./package.nix { };
|
||
|
}
|
||
|
)
|