mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-10-31 23:28:51 +01:00
14 lines
279 B
Nix
14 lines
279 B
Nix
|
{
|
||
|
perSystem =
|
||
|
{ config, lib, ... }:
|
||
|
{
|
||
|
devShells =
|
||
|
lib.concatMapAttrs
|
||
|
(name: package: {
|
||
|
${name} = package.passthru.shell;
|
||
|
${name + "-extra"} = package.passthru.shell-extra;
|
||
|
})
|
||
|
config.packages;
|
||
|
};
|
||
|
}
|