nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 29 lines 704 B view raw
1{ 2 buildOctavePackage, 3 lib, 4 fetchurl, 5 librsb, 6}: 7 8buildOctavePackage rec { 9 pname = "sparsersb"; 10 version = "1.0.9"; 11 12 src = fetchurl { 13 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 14 sha256 = "0jyy2m7wylzyjqj9n6mjizhj0ccq8xnxm2g6pdlrmncxq1401khd"; 15 }; 16 17 propagatedBuildInputs = [ 18 librsb 19 ]; 20 21 meta = { 22 homepage = "https://gnu-octave.github.io/packages/sparsersb/"; 23 license = lib.licenses.gpl3Plus; 24 maintainers = with lib.maintainers; [ KarlJoad ]; 25 description = "Interface to the librsb package implementing the RSB sparse matrix format for fast shared-memory sparse matrix computations"; 26 # Broken since octave>8.x 27 broken = true; 28 }; 29}