nixpkgs/pkgs/development/octave-modules/nan/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
581 B
Nix
Raw Normal View History

2021-01-06 17:27:31 +00:00
{ buildOctavePackage
, lib
, fetchurl
, blas
}:
buildOctavePackage rec {
pname = "nan";
version = "3.7.0";
2021-01-06 17:27:31 +00:00
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "sha256-d9J6BfNFeM5LtMqth0boSPd9giYU42KBnxrsUCmKK1s=";
2021-01-06 17:27:31 +00:00
};
buildInputs = [
blas
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/nan/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "A statistics and machine learning toolbox for data with and w/o missing values";
};
}