lis: init at 2.1.10 (#447222)

This commit is contained in:
Sandro
2026-02-27 01:26:11 +00:00
committed by GitHub
2 changed files with 37 additions and 0 deletions
+6
View File
@@ -18880,6 +18880,12 @@
githubId = 42888162;
keys = [ { fingerprint = "A0B9 48C5 A263 55C2 035F 8567 FBB7 2A94 52D9 1A72"; } ];
};
neural-blade = {
name = "Carmelo Scaccianoce";
email = "6c5bk3syhivc1t5ae2prj6k05p12cj.swifter143@simplelogin.com";
github = "neural-blade";
githubId = 64137177;
};
neurofibromin = {
name = "Neurofibromin";
github = "Neurofibromin";
+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;
};
})