nix: add missing meta attributes
This commit is contained in:
parent
0e614077c3
commit
5dfe9ba4b6
1 changed files with 9 additions and 3 deletions
|
@ -178,9 +178,13 @@ effectiveStdenv.mkDerivation (
|
|||
};
|
||||
|
||||
meta = {
|
||||
broken = (useCuda && effectiveStdenv.isDarwin) || (useMetalKit && !effectiveStdenv.isDarwin);
|
||||
description = "Inference of LLaMA model in pure C/C++${descriptionSuffix}";
|
||||
mainProgram = "llama";
|
||||
homepage = "https://github.com/ggerganov/llama.cpp/";
|
||||
license = lib.licenses.mit;
|
||||
|
||||
# Accommodates `nix run` and `lib.getExe`
|
||||
mainProgram = "llama";
|
||||
|
||||
# These people might respond if you ping them in case of Nix-specific
|
||||
# regressions or for reviewing Nix-specific PRs.
|
||||
|
@ -190,6 +194,8 @@ effectiveStdenv.mkDerivation (
|
|||
philiptaron
|
||||
SomeoneSerge
|
||||
];
|
||||
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue