octave.pkgs.sparsersb: remove librsb null override, unbreak (#115838)

This commit is contained in:
Karl H 2021-03-10 16:28:10 -06:00 committed by GitHub
parent 04bdbabcbc
commit aa202f1c94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 8 deletions

View file

@ -13,7 +13,7 @@ buildOctavePackage rec {
sha256 = "0nl7qppa1cm51188hqhbfswlih9hmy1yz7v0f5i07z0g0kbd62xw";
};
buildInputs = [
propagatedBuildInputs = [
librsb
];
@ -22,7 +22,5 @@ buildOctavePackage rec {
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,11 +179,7 @@ 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/
};
sparsersb = callPackage ../development/octave-modules/sparsersb { };
stk = callPackage ../development/octave-modules/stk { };