mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 08:05:40 +00:00
9367367dfd
Permanent redirects on homepages and/or source URLs as reported by Repology
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitLab, symlinkJoin, gfortran, perl, procps
|
|
, libyaml, libxc, fftw, openblas, gsl, netcdf, arpack, autoreconfHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "octopus";
|
|
version = "9.1";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "octopus-code";
|
|
repo = "octopus";
|
|
rev = version;
|
|
sha256 = "1l5fqgllk7rij16q7a3la7qq6isy8a5n37vk400qcscw1v32s90h";
|
|
};
|
|
|
|
nativeBuildInputs = [ perl procps autoreconfHook ];
|
|
buildInputs = [ libyaml gfortran libxc openblas gsl fftw netcdf arpack ];
|
|
|
|
configureFlags = [
|
|
"--with-yaml-prefix=${libyaml}"
|
|
"--with-blas=-lopenblas"
|
|
"--with-lapack=-lopenblas"
|
|
"--with-fftw-prefix=${fftw.dev}"
|
|
"--with-gsl-prefix=${gsl}"
|
|
"--with-libxc-prefix=${libxc}"
|
|
];
|
|
|
|
doCheck = false;
|
|
checkTarget = "check-short";
|
|
|
|
postPatch = ''
|
|
patchShebangs ./
|
|
'';
|
|
|
|
postConfigure = ''
|
|
patchShebangs testsuite/oct-run_testsuite.sh
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Real-space time dependent density-functional theory code";
|
|
homepage = https://octopus-code.org;
|
|
maintainers = with maintainers; [ markuskowa ];
|
|
license = licenses.gpl2;
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|