Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
108 lines
2.5 KiB
Nix
108 lines
2.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
gfortran,
|
|
blas,
|
|
lapack,
|
|
scalapack,
|
|
useMpi ? false,
|
|
mpi,
|
|
fetchFromGitLab,
|
|
cmake,
|
|
pkg-config,
|
|
readline,
|
|
ninja,
|
|
elpa,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "siesta";
|
|
version = "5.2.2";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "siesta-project";
|
|
repo = "siesta";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-pud8RlJAT+0TwyPRsbf5D/8FfLjZvPYPf84Xb7UH6os=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
passthru = {
|
|
inherit mpi;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
ninja
|
|
gfortran
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
blas
|
|
lapack
|
|
readline
|
|
elpa
|
|
]
|
|
++ lib.optionals useMpi [
|
|
mpi
|
|
scalapack
|
|
];
|
|
|
|
NIX_LDFLAGS = "-lm";
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_POLICY_VERSION_MINIMUM=3.5"
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
];
|
|
|
|
enableParallelBuilding = false; # Started making trouble with gcc-11
|
|
|
|
preBuild = ''
|
|
# See https://gitlab.com/siesta-project/siesta/-/commit/a10bf1628e7141ba263841889c3503c263de1582
|
|
# This may be fixed in the next release.
|
|
makeFlagsArray=(
|
|
FFLAGS="-fallow-argument-mismatch"
|
|
)
|
|
''
|
|
+ (
|
|
if useMpi then
|
|
''
|
|
makeFlagsArray+=(
|
|
CC="mpicc" FC="mpifort"
|
|
FPPFLAGS="-DMPI" MPI_INTERFACE="libmpi_f90.a" MPI_INCLUDE="."
|
|
COMP_LIBS="" LIBS="-lblas -llapack -lscalapack"
|
|
);
|
|
''
|
|
else
|
|
''
|
|
makeFlagsArray+=(
|
|
COMP_LIBS="" LIBS="-lblas -llapack"
|
|
);
|
|
''
|
|
);
|
|
|
|
meta = {
|
|
description = "First-principles materials simulation code using DFT";
|
|
mainProgram = "siesta";
|
|
longDescription = ''
|
|
SIESTA is both a method and its computer program
|
|
implementation, to perform efficient electronic structure
|
|
calculations and ab initio molecular dynamics simulations of
|
|
molecules and solids. SIESTA's efficiency stems from the use
|
|
of strictly localized basis sets and from the implementation
|
|
of linear-scaling algorithms which can be applied to suitable
|
|
systems. A very important feature of the code is that its
|
|
accuracy and cost can be tuned in a wide range, from quick
|
|
exploratory calculations to highly accurate simulations
|
|
matching the quality of other approaches, such as plane-wave
|
|
and all-electron methods.
|
|
'';
|
|
homepage = "https://siesta-project.org/siesta/";
|
|
license = lib.licenses.gpl2;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = [ lib.maintainers.costrouc ];
|
|
};
|
|
})
|