stylelint: 16.9.0 -> 16.11.0 (#360524)
[NixPkgs.git] / pkgs / development / octave-modules / nan / default.nix
blob59d71d8769e0bf408c034b2b26b801768324e10a
1 { buildOctavePackage
2 , lib
3 , fetchurl
4 , blas
5 }:
7 buildOctavePackage rec {
8   pname = "nan";
9   version = "3.7.0";
11   src = fetchurl {
12     url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
13     sha256 = "sha256-d9J6BfNFeM5LtMqth0boSPd9giYU42KBnxrsUCmKK1s=";
14   };
16   buildInputs = [
17     blas
18   ];
20   meta = with lib; {
21     homepage = "https://octave.sourceforge.io/nan/index.html";
22     license = licenses.gpl3Plus;
23     maintainers = with maintainers; [ KarlJoad ];
24     description = "Statistics and machine learning toolbox for data with and w/o missing values";
25   };