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,13 +2,16 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
clang
yarn nodejs
openssl
python3
python3Packages.requests
python3Packages.ipython
name = "kalkutago";
nativeBuildInputs = with pkgs.buildPackages; [
clang
yarn nodejs
openssl
python3
python3Packages.requests
python3Packages.ipython
rustup
docker
gnumake
];
}