Spaces:
Sleeping
Sleeping
File size: 524 Bytes
cf9b47a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
with import <nixpkgs> {};
mkShell {
packages = [
rustup
cargo
openssl
cacert
libiconv
pkg-config
libunistring
openblas
gfortran
gcc
sentencepiece
python39Packages.sentencepiece
wget
xz
gzip
bzip2
curlFull
];
buildInputs = [] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.IOKit
darwin.apple_sdk.frameworks.Security
darwin.apple_sdk.frameworks.CoreServices
darwin.apple_sdk.frameworks.CoreFoundation
] ;
} |