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 (
178178 } ;
179179
180180 meta = {
181+ broken = ( useCuda && effectiveStdenv . isDarwin ) || ( useMetalKit && ! effectiveStdenv . isDarwin ) ;
181182 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 ;
183185
186+ # Accommodates `nix run` and `lib.getExe`
187+ mainProgram = "llama" ;
184188
185189 # These people might respond if you ping them in case of Nix-specific
186190 # regressions or for reviewing Nix-specific PRs.
187191
188192 # Note that lib.maintainers is defined in Nixpkgs.
189193 maintainers = with lib . maintainers ; [
190- philiptaron
191- SomeoneSerge
194+ philiptaron
195+ SomeoneSerge
192196 ] ;
197+
198+ platforms = lib . platforms . unix ;
193199 } ;
194200 }
195201)
You can’t perform that action at this time.
0 commit comments