Add command to update release channel

This commit is contained in:
2024-04-01 19:29:19 +02:00
parent 2add7857f2
commit 76df4256e6
5 changed files with 23 additions and 8 deletions

19
shell/dev.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";
}