about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/octave-modules/sparsersb/default.nix
blob: 507ed1100a4253aa506d2dcc022926ef2823a61c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ buildOctavePackage
, lib
, fetchurl
, librsb
}:

buildOctavePackage rec {
  pname = "sparsersb";
  version = "1.0.9";

  src = fetchurl {
    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
    sha256 = "0jyy2m7wylzyjqj9n6mjizhj0ccq8xnxm2g6pdlrmncxq1401khd";
  };

  propagatedBuildInputs = [
    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";
  };
}