summary refs log blame commit diff
path: root/pkgs/development/libraries/netcdf-cxx4/default.nix
blob: 494f4bf71575b630f93bb0b35c0da04c3e9332cc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                            
                         
                        
                    
 
                  
                                                                              
                                                                    

    


                                                    
 
                                      
                                     
 
                 
                                 


                                                       
                                                               

                                   

    
{ lib, stdenv, fetchzip, netcdf, hdf5, curl, cmake, ninja }:
stdenv.mkDerivation rec {
  pname = "netcdf-cxx4";
  version = "4.3.1";

  src = fetchzip {
    url = "https://github.com/Unidata/netcdf-cxx4/archive/v${version}.tar.gz";
    sha256 = "05kydd5z9iil5iv4fp7l11cicda5n5lsg5sdmsmc55xpspnsg7hr";
  };

  preConfigure = ''
    cmakeFlags+="-Dabs_top_srcdir=$(readlink -f ./)"
  '';

  nativeBuildInputs = [ cmake ninja ];
  buildInputs = [ netcdf hdf5 curl ];

  doCheck = true;
  enableParallelChecking = false;

  meta = {
    description = "C++ API to manipulate netcdf files";
    homepage = "https://www.unidata.ucar.edu/software/netcdf/";
    license = lib.licenses.free;
    platforms = lib.platforms.unix;
  };
}