nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 32 lines 657 B view raw
1{ 2 buildOctavePackage, 3 lib, 4 fetchurl, 5 netcdf, 6 statistics, 7}: 8 9buildOctavePackage rec { 10 pname = "ncarray"; 11 version = "1.0.6"; 12 13 src = fetchurl { 14 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 15 sha256 = "sha256-W6L2Esm7AdzntT7cimKylbeKYcZWKhHim96N5dM/qoE="; 16 }; 17 18 buildInputs = [ 19 netcdf 20 ]; 21 22 requiredOctavePackages = [ 23 statistics 24 ]; 25 26 meta = { 27 homepage = "https://gnu-octave.github.io/packages/ncarray/"; 28 license = lib.licenses.gpl2Plus; 29 maintainers = with lib.maintainers; [ KarlJoad ]; 30 description = "Access a single or a collection of NetCDF files as a multi-dimensional array"; 31 }; 32}