lis: init at 2.1.10

This commit is contained in:
neural-blade
2025-10-06 18:47:02 +02:00
parent 84b0ecdb2c
commit 80ed442921
+31
View File
@@ -0,0 +1,31 @@
{
lib,
stdenv,
fetchzip,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "lis";
version = "2.1.10";
src = fetchzip {
url = "https://www.ssisc.org/lis/dl/lis-${finalAttrs.version}.zip";
hash = "sha256-rRtme4ItbvL8xGBSeoCD5f+INPPhmlON8cVt+q+puSc=";
};
enableParallelBuilding = true;
meta = {
homepage = "https://www.ssisc.org/lis/";
description = "Library of Iterative Solvers for linear systems";
longDescription = ''
Lis (Library of Iterative Solvers for linear systems, pronounced [lis])
is a parallel software library to solve discretized linear equations and
eigenvalue problems that arise from the numerical solution of
partial differential equations using iterative methods.
'';
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ neural-blade ];
platforms = lib.platforms.unix;
};
})