mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
44 lines
833 B
Nix
44 lines
833 B
Nix
{ stdenv
|
|
, lib
|
|
, gfortran
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, blas
|
|
, lapack
|
|
, python3Packages
|
|
}:
|
|
|
|
assert blas.isILP64 == lapack.isILP64;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mopac";
|
|
version = "22.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openmopac";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-4jQ0WCHK07CXWUPj5Z1zSXObKxnitMj+FJQbLDiS2Dc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ gfortran cmake ];
|
|
|
|
buildInputs = [ blas lapack ];
|
|
|
|
checkInputs = with python3Packages; [ python numpy ];
|
|
|
|
doCheck = true;
|
|
|
|
preCheck = ''
|
|
export OMP_NUM_THREADS=2
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Semiempirical quantum chemistry";
|
|
homepage = "https://github.com/openmopac/mopac";
|
|
license = licenses.lgpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ sheepforce markuskowa ];
|
|
};
|
|
}
|