mirror of
https://github.com/0x1d/nix.git
synced 2025-12-14 05:56:51 +01:00
20 lines
387 B
Nix
20 lines
387 B
Nix
let
|
|
unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) { };
|
|
in
|
|
{ pkgs ? import <nixpkgs> { } }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
stdenv
|
|
gnumake
|
|
cmake
|
|
python311Full
|
|
python310Packages.nltk
|
|
python310Packages.pip
|
|
conda
|
|
poetry
|
|
ninja
|
|
nodejs
|
|
];
|
|
LD_LIBRARY_PATH = "${pkgs.stdenv.cc.cc.lib}/lib";
|
|
}
|