depot/third_party/nixpkgs/pkgs/development/octave-modules/nan/default.nix
Default email ce641f4048 Project import generated by Copybara.
GitOrigin-RevId: bc5d68306b40b8522ffb69ba6cff91898c2fbbff
2021-12-06 17:07:01 +01:00

26 lines
582 B
Nix

{ buildOctavePackage
, lib
, fetchurl
, blas
}:
buildOctavePackage rec {
pname = "nan";
version = "3.6.0";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "1zxdg0yg5jnwq6ppnikd13zprazia6w6zpgw99f62mc03iqk5c4q";
};
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";
};
}