octave.pkgs.sparsersb: init at 1.0.8

This commit is contained in:
Karl Hallsby 2021-01-06 12:05:39 -06:00 committed by Doron Behar
parent c968c7a8aa
commit 75918e10fa
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ buildOctavePackage
, lib
, fetchurl
, librsb
}:
buildOctavePackage rec {
pname = "sparsersb";
version = "1.0.8";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "0nl7qppa1cm51188hqhbfswlih9hmy1yz7v0f5i07z0g0kbd62xw";
};
buildInputs = [
librsb
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/sparsersb/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Interface to the librsb package implementing the RSB sparse matrix format for fast shared-memory sparse matrix computations";
# Mark this way until KarlJoad builds librsb specifically for this package.
broken = true;
};
}

View File

@ -179,6 +179,12 @@ makeScope newScope (self:
sockets = callPackage ../development/octave-modules/sockets { };
sparsersb = callPackage ../development/octave-modules/sparsersb {
librsb = null;
# TODO: Package the librsb library to build this package.
# http://librsb.sourceforge.net/
};
stk = callPackage ../development/octave-modules/stk { };
struct = callPackage ../development/octave-modules/struct { };