atrip/shell.nix
2021-08-30 16:13:34 +02:00

10 lines
109 B
Nix

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