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