Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildOctavePackage, 3 lib, 4 fetchurl, 5 blas, 6}: 7 8buildOctavePackage rec { 9 pname = "nan"; 10 version = "3.7.0"; 11 12 src = fetchurl { 13 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 14 sha256 = "sha256-d9J6BfNFeM5LtMqth0boSPd9giYU42KBnxrsUCmKK1s="; 15 }; 16 17 buildInputs = [ 18 blas 19 ]; 20 21 meta = { 22 homepage = "https://gnu-octave.github.io/packages/nan/"; 23 license = lib.licenses.gpl3Plus; 24 maintainers = with lib.maintainers; [ KarlJoad ]; 25 description = "Statistics and machine learning toolbox for data with and w/o missing values"; 26 }; 27}