Commit 3e439e7c authored by Luke Granger-Brown's avatar Luke Granger-Brown
Browse files

netcdf: add bzip2/libzip/zstd dependencies (and allow for szip support;...

netcdf: add bzip2/libzip/zstd dependencies (and allow for szip support; disabled by default because it's nonfree)
parent a12ccf90
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
{ lib, stdenv
, fetchurl, unzip
, hdf5
, bzip2
, libzip
, zstd
, szipSupport ? false
, szip
, libxml2
, m4
, curl # for DAP
@@ -34,7 +39,10 @@ in stdenv.mkDerivation rec {
    hdf5
    libxml2
    mpi
  ];
    bzip2
    libzip
    zstd
  ] ++ lib.optional szipSupport szip;

  passthru = {
    inherit mpiSupport mpi;