File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -178,18 +178,24 @@ effectiveStdenv.mkDerivation (
178
178
} ;
179
179
180
180
meta = {
181
+ broken = ( useCuda && effectiveStdenv . isDarwin ) || ( useMetalKit && ! effectiveStdenv . isDarwin ) ;
181
182
description = "Inference of LLaMA model in pure C/C++${ descriptionSuffix } " ;
182
- mainProgram = "llama" ;
183
+ homepage = "https://github.com/ggerganov/llama.cpp/" ;
184
+ license = lib . licenses . mit ;
183
185
186
+ # Accommodates `nix run` and `lib.getExe`
187
+ mainProgram = "llama" ;
184
188
185
189
# These people might respond if you ping them in case of Nix-specific
186
190
# regressions or for reviewing Nix-specific PRs.
187
191
188
192
# Note that lib.maintainers is defined in Nixpkgs.
189
193
maintainers = with lib . maintainers ; [
190
- philiptaron
191
- SomeoneSerge
194
+ philiptaron
195
+ SomeoneSerge
192
196
] ;
197
+
198
+ platforms = lib . platforms . unix ;
193
199
} ;
194
200
}
195
201
)
You can’t perform that action at this time.
0 commit comments