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

Commits on Mar 21, 2019

  1. Copy the full SHA
    55f527f View commit details

Commits on Mar 22, 2019

  1. Merge pull request #58074 from dtzWill/update/libassuan-2.5.3

    libassuan: 2.5.2 -> 2.5.3
    dtzWill authored Mar 22, 2019
    Copy the full SHA
    55b9545 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/libraries/libassuan/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/libraries/libassuan/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{ fetchurl, stdenv, gettext, pth, libgpgerror }:

stdenv.mkDerivation rec {
name = "libassuan-2.5.2";
pname = "libassuan";
version = "2.5.3";

src = fetchurl {
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
sha256 = "1rw8nw6fx6ppxga6m4cqcp898lnlzf7vn3s5c2lzfxg3fzr1nswq";
url = "mirror://gnupg/${pname}/${pname}-${version}.tar.bz2";
sha256 = "00p7cpvzf0q3qwcgg51r9d0vbab4qga2xi8wpk2fgd36710b1g4i";
};

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