Unverified Commit 58a890fb authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

lis: init at 2.1.10 (#447222)

parents 31d42538 80ed4429
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
{
  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;
  };
})