summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorLaure Tavard <laure.tavard@univ-grenoble-alpes.fr>2017-09-05 14:40:20 +0200
committerzimbatm <zimbatm@zimbatm.com>2017-09-05 13:40:20 +0100
commitbf491f87940b8607063b508a642791233649f894 (patch)
tree5a06528562a121ec744657b4d406f19d72cf6cc7 /pkgs/development/libraries
parent85cffcfce0c939630f51e9aa630ab0bf17814ddc (diff)
downloadnixpkgs-bf491f87940b8607063b508a642791233649f894.tar
nixpkgs-bf491f87940b8607063b508a642791233649f894.tar.gz
nixpkgs-bf491f87940b8607063b508a642791233649f894.tar.bz2
nixpkgs-bf491f87940b8607063b508a642791233649f894.tar.lz
nixpkgs-bf491f87940b8607063b508a642791233649f894.tar.xz
nixpkgs-bf491f87940b8607063b508a642791233649f894.tar.zst
nixpkgs-bf491f87940b8607063b508a642791233649f894.zip
cdo: init at 1.7.2 (#22496)
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/cdo/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/development/libraries/cdo/default.nix b/pkgs/development/libraries/cdo/default.nix
new file mode 100644
index 00000000000..b7768a3d245
--- /dev/null
+++ b/pkgs/development/libraries/cdo/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchurl, curl, hdf5, netcdf
+, enable_cdi_lib ? false    # build, install and link to a CDI library [default=no]
+, enable_all_static ? false # build a completely statically linked CDO binary  [default=no]
+, enable_cxx ? false        # Use CXX as default compiler [default=no]
+}:
+
+stdenv.mkDerivation rec {
+  version = "1.7.2";
+  name = "cdo-${version}";
+
+  # Dependencies
+  buildInputs = [ curl netcdf hdf5 ];
+
+  src = fetchurl {
+    url = "https://code.zmaw.de/attachments/download/12760/${name}.tar.gz";
+    sha256 = "4c43eba7a95f77457bfe0d30fb82382b3b5f2b0cf90aca6f0f0a008f6cc7e697";
+  };
+
+ # Configure phase
+ configureFlags = [
+   "--with-netcdf=${netcdf}" "--with-hdf5=${hdf5}"]
+   ++ stdenv.lib.optional (enable_cdi_lib) "--enable-cdi-lib"
+   ++ stdenv.lib.optional (enable_all_static) "--enable-all-static"
+   ++ stdenv.lib.optional (enable_cxx) "--enable-cxx";
+
+  meta = {
+    description = "Collection of command line Operators to manipulate and analyse Climate and NWP model Data";
+    longDescription = ''
+      Supported data formats are GRIB 1/2, netCDF 3/4, SERVICE, EXTRA and IEG.
+      There are more than 600 operators available.
+    '';
+    homepage = https://code.zmaw.de/projects/cdo/;
+    license = stdenv.lib.licenses.gpl2;
+    maintainers = [ stdenv.lib.maintainers.ltavard ];
+    platforms = with stdenv.lib.platforms; linux ++ darwin;
+  };
+}