Fix shell.nix

This commit is contained in:
D. Scott Boggs 2023-08-24 13:10:20 -04:00
parent 37426aaa52
commit ffc1c6806a

View file

@ -2,6 +2,7 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "kalkutago";
nativeBuildInputs = with pkgs.buildPackages; [
clang
yarn nodejs
@ -9,6 +10,8 @@ pkgs.mkShell {
python3
python3Packages.requests
python3Packages.ipython
rustup
docker
gnumake
];
}