lol

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

authored by

Karl H and committed by
GitHub
aa202f1c 04bdbabc

+2 -8
+1 -3
pkgs/development/octave-modules/sparsersb/default.nix
··· 13 13 sha256 = "0nl7qppa1cm51188hqhbfswlih9hmy1yz7v0f5i07z0g0kbd62xw"; 14 14 }; 15 15 16 - buildInputs = [ 16 + propagatedBuildInputs = [ 17 17 librsb 18 18 ]; 19 19 ··· 22 22 license = licenses.gpl3Plus; 23 23 maintainers = with maintainers; [ KarlJoad ]; 24 24 description = "Interface to the librsb package implementing the RSB sparse matrix format for fast shared-memory sparse matrix computations"; 25 - # Mark this way until KarlJoad builds librsb specifically for this package. 26 - broken = true; 27 25 }; 28 26 }
+1 -5
pkgs/top-level/octave-packages.nix
··· 179 179 180 180 sockets = callPackage ../development/octave-modules/sockets { }; 181 181 182 - sparsersb = callPackage ../development/octave-modules/sparsersb { 183 - librsb = null; 184 - # TODO: Package the librsb library to build this package. 185 - # http://librsb.sourceforge.net/ 186 - }; 182 + sparsersb = callPackage ../development/octave-modules/sparsersb { }; 187 183 188 184 stk = callPackage ../development/octave-modules/stk { }; 189 185