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: 2587611ed591
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2dcaa24ac1ee
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 29, 2016

  1. nettle: 3.2 -> 3.3

    This is a bugfix release.
    
    See http://lists.gnu.org/archive/html/info-gnu/2016-10/msg00003.html
    for release announcement.
    lsix committed Nov 29, 2016
    Copy the full SHA
    06c5943 View commit details

Commits on Dec 3, 2016

  1. Merge pull request #20793 from lsix/update_nettle_3_3

    nettle: 3.2 -> 3.3
    grahamc authored Dec 3, 2016
    Copy the full SHA
    2dcaa24 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/nettle/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/nettle/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{ callPackage, fetchurl, ... } @ args:

callPackage ./generic.nix (args // rec {
version = "3.2";
version = "3.3";

src = fetchurl {
url = "mirror://gnu/nettle/nettle-${version}.tar.gz";
sha256 = "15wxhk52yc62rx0pddmry66hqm6z5brrrkx4npd3wh9nybg86hpa";
sha256 = "07mif3af077763vc35s1x8vzhzlgqcgxh67c1xr13jnhslkjd526";
};
})