Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5fbbeaa31db0
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f3c913d466f1
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 15, 2018

  1. libgcrypt: 1.8.2 -> 1.8.3

    See http://lists.gnu.org/archive/html/info-gnu/2018-06/msg00006.html for
    release information
    
    (cherry picked from commit a0b2ce5)
    lsix authored and lukateras committed Jun 15, 2018

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    f3c913d View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/libgcrypt/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libgcrypt/default.nix
Original file line number Diff line number Diff line change
@@ -6,11 +6,11 @@ assert enableCapabilities -> stdenv.isLinux;

stdenv.mkDerivation rec {
name = "libgcrypt-${version}";
version = "1.8.2";
version = "1.8.3";

src = fetchurl {
url = "mirror://gnupg/libgcrypt/${name}.tar.bz2";
sha256 = "01sca9m8hm6b5v8hmqsfdjhyz013869p1f0fxw9ln52qfnp4q1n8";
sha256 = "0z5gs1khzyknyfjr19k8gk4q148s6q987ya85cpn0iv70fz91v36";
};

outputs = [ "out" "dev" "info" ];