diff --git a/pkgs/by-name/li/lis/package.nix b/pkgs/by-name/li/lis/package.nix new file mode 100644 index 000000000000..bc02a046a6b7 --- /dev/null +++ b/pkgs/by-name/li/lis/package.nix @@ -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; + }; +})