update system

This commit is contained in:
2023-11-27 09:25:12 +01:00
parent c03c8ab0c7
commit 2add7857f2
13 changed files with 116 additions and 13 deletions

19
shell/python.nix Normal file
View File

@@ -0,0 +1,19 @@
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";
}