depot/third_party/nixpkgs/pkgs/development/octave-modules/sparsersb/default.nix
Default email 75ca762b89 Project import generated by Copybara.
GitOrigin-RevId: 29b0d4d0b600f8f5dd0b86e3362a33d4181938f9
2021-03-09 11:18:52 +08:00

28 lines
742 B
Nix

{ 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;
};
}