Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 592488c65727
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fc303d2e250a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 25, 2017

  1. eccodes: 2.2.0 -> 2.5.0

    knedlsepp committed Nov 25, 2017
    Copy the full SHA
    cbe3390 View commit details
  2. Merge pull request #32032 from knedlsepp/upgrade-eccodes

    eccodes: 2.2.0 -> 2.5.0
    joachifm authored Nov 25, 2017
    Copy the full SHA
    fc303d2 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/eccodes/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/eccodes/default.nix
Original file line number Diff line number Diff line change
@@ -6,11 +6,11 @@
with stdenv.lib;
stdenv.mkDerivation rec {
name = "eccodes-${version}";
version = "2.2.0";
version = "2.5.0";

src = fetchurl {
url = https://software.ecmwf.int/wiki/download/attachments/45757960/eccodes-2.2.0-Source.tar.gz;
sha256 = "1hzl0akjfxphqivnaj2kg131w8ki80ba3872h0a45f4pchci4h8s";
url = "https://software.ecmwf.int/wiki/download/attachments/45757960/eccodes-${version}-Source.tar.gz";
sha256 = "0kiff19gk0w7ij0kx5ydqpsmdq499ylxxxq79lrgss218jy49aqq";
};

nativeBuildInputs = [ cmake ];