Merge pull request #107636 from markuskowa/clean-molcas

openmolcas: fix fallout from #83888
This commit is contained in:
markuskowa
2020-12-26 20:15:12 +01:00
committed by GitHub

View File

@@ -1,11 +1,9 @@
{ stdenv, fetchFromGitLab, cmake, gfortran, perl
, openblas, blas, lapack, hdf5-cpp, python3, texlive
, openblas, hdf5-cpp, python3, texlive
, armadillo, openmpi, globalarrays, openssh
, makeWrapper, fetchpatch
} :
assert blas.implementation == "openblas" && lapack.implementation == "openblas";
let
version = "20.10";
gitLabRev = "v${version}";
@@ -74,7 +72,7 @@ in stdenv.mkDerivation {
homepage = "https://gitlab.com/Molcas/OpenMolcas";
maintainers = [ maintainers.markuskowa ];
license = licenses.lgpl21;
platforms = platforms.linux;
platforms = [ "x86_64-linux" ];
};
}