18 lines
299 B
Nix
18 lines
299 B
Nix
# DEVELOPMENT shell environment
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
name = "kalkutago";
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
clang
|
|
yarn nodejs
|
|
openssl
|
|
python3
|
|
python3Packages.requests
|
|
python3Packages.ipython
|
|
rustup
|
|
docker
|
|
gnumake
|
|
];
|
|
}
|