about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorlewo <lewo@abesis.fr>2018-03-23 09:44:56 +0100
committerGitHub <noreply@github.com>2018-03-23 09:44:56 +0100
commit421a4a2a7583772064a28901b90d02af9ff07c79 (patch)
tree2be753df170e80d85260b102e7e4f9013e75f44e /pkgs/development
parent69e6845b60c4da9913dd258fe7013c7654421c6b (diff)
parentb0f64deb0bff47aa71554c634add95974fb8d8d9 (diff)
downloadnixlib-421a4a2a7583772064a28901b90d02af9ff07c79.tar
nixlib-421a4a2a7583772064a28901b90d02af9ff07c79.tar.gz
nixlib-421a4a2a7583772064a28901b90d02af9ff07c79.tar.bz2
nixlib-421a4a2a7583772064a28901b90d02af9ff07c79.tar.lz
nixlib-421a4a2a7583772064a28901b90d02af9ff07c79.tar.xz
nixlib-421a4a2a7583772064a28901b90d02af9ff07c79.tar.zst
nixlib-421a4a2a7583772064a28901b90d02af9ff07c79.zip
Merge pull request #37519 from ryantm/auto-update/netcdf-fortran
netcdffortran: 4.4.3 -> 4.4.4
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/netcdf-fortran/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/netcdf-fortran/default.nix b/pkgs/development/libraries/netcdf-fortran/default.nix
index 35f675a305af..d43519f4a2f3 100644
--- a/pkgs/development/libraries/netcdf-fortran/default.nix
+++ b/pkgs/development/libraries/netcdf-fortran/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, netcdf, hdf5, curl, gfortran }:
 stdenv.mkDerivation rec {
   name = "netcdf-fortran-${version}";
-  version = "4.4.3";
+  version = "4.4.4";
 
   src = fetchurl {
     url = "https://github.com/Unidata/netcdf-fortran/archive/v${version}.tar.gz";
-    sha256 = "4170fc018c9ee8222e317215c6a273542623185f5f6ee00d37bbb4e024e4e998";
+    sha256 = "0rwybszj1jjb25cx8vfyrd77x5qsdjzwspcjz56n12br89n9ica4";
   };
 
   buildInputs = [ netcdf hdf5 curl gfortran ];