Merge pull request #130009 from markuskowa/upd-octopus
octopus: 10.3 -> 10.5
This commit is contained in:
commit
c303cb4566
1 changed files with 10 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchFromGitLab, symlinkJoin, gfortran, perl, procps
|
{ lib, stdenv, fetchFromGitLab, gfortran, perl, procps
|
||||||
, libyaml, libxc, fftw, blas, lapack, gsl, netcdf, arpack, autoreconfHook
|
, libyaml, libxc, fftw, blas, lapack, gsl, netcdf, arpack, autoreconfHook
|
||||||
, python3
|
, python3
|
||||||
}:
|
}:
|
||||||
|
@ -7,19 +7,24 @@ assert (!blas.isILP64) && (!lapack.isILP64);
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "octopus";
|
pname = "octopus";
|
||||||
version = "10.3";
|
version = "10.5";
|
||||||
|
|
||||||
src = fetchFromGitLab {
|
src = fetchFromGitLab {
|
||||||
owner = "octopus-code";
|
owner = "octopus-code";
|
||||||
repo = "octopus";
|
repo = "octopus";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1axr3j53mi30gm3f645ga5jkhxbc7rbx432w2k2lgg6g9dv3fcs4";
|
sha256 = "1bgdkmsp6pwq3b6nxxkimrdmz71wqr8qi25gdzwpcv9wmcf1q27v";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ perl procps autoreconfHook ];
|
nativeBuildInputs = [
|
||||||
|
perl
|
||||||
|
procps
|
||||||
|
autoreconfHook
|
||||||
|
gfortran
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libyaml
|
libyaml
|
||||||
gfortran
|
|
||||||
libxc
|
libxc
|
||||||
blas
|
blas
|
||||||
lapack
|
lapack
|
||||||
|
|
Loading…
Reference in a new issue