Add .default.nix and .envrc

This commit is contained in:
Roberto Di Remigio
2017-12-08 11:00:33 -05:00
parent 65df3eae5e
commit 7161d75691
2 changed files with 26 additions and 0 deletions

19
.default.nix Normal file
View File

@ -0,0 +1,19 @@
with import <nixpkgs> {}; {
autocmakeEnv = stdenv.mkDerivation {
name = "Autocmake";
buildInputs = [
atlas
ccache
clang
cmake
doxygen
gfortran
liblapack
openmpi
python35Packages.pep8
python35Packages.pytest
python35Packages.pyyaml
zlib
];
};
}