lis: init at 2.1.10
This commit is contained in:
@@ -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;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user