15 lines
251 B
Nix
15 lines
251 B
Nix
# DEVELOPMENT shell environment
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
clang
|
|
yarn nodejs
|
|
openssl
|
|
python3
|
|
python3Packages.requests
|
|
python3Packages.ipython
|
|
];
|
|
}
|
|
|