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

Commits on Oct 9, 2018

  1. Copy the full SHA
    6424a14 View commit details

Commits on Oct 13, 2018

  1. Copy the full SHA
    c02fc32 View commit details
  2. Merge pull request #48129 from dtzWill/update/gpgme-0.12.0

    gpgme: 1.11.1 -> 1.12.0
    lukateras authored Oct 13, 2018
    Copy the full SHA
    91ecdd5 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/gpgme/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/gpgme/default.nix
Original file line number Diff line number Diff line change
@@ -14,11 +14,11 @@ in

stdenv.mkDerivation rec {
name = "gpgme-${version}";
version = "1.11.1";
version = "1.12.0";

src = fetchurl {
url = "mirror://gnupg/gpgme/${name}.tar.bz2";
sha256 = "0vxx5xaag3rhp4g2arp5qm77gvz4kj0m3hnpvhkdvqyjfhbi26rd";
sha256 = "1n4c1q2ls7sqx1vpr3p5n8vbjkw6kqp8jxqa28p0x9j36wf9bp5l";
};

outputs = [ "out" "dev" "info" ];
@@ -49,7 +49,7 @@ stdenv.mkDerivation rec {

checkInputs = [ which ];

doCheck = false; # fails 8 out of 26 tests with "GPGME: Decryption failed". Spooky!
doCheck = true;

meta = with stdenv.lib; {
homepage = https://gnupg.org/software/gpgme/index.html;