atrip/shell.nix

18 lines
154 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell rec {
buildInputs = with pkgs; [
coreutils
git
gcc
blas
openmpi
emacs
];
}