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

Commits on Apr 7, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    fpletz Franz Pletz
    Copy the full SHA
    ff2aa0c View commit details

Commits on Apr 15, 2020

  1. Merge pull request #84607 from AndersonTorres/update-libtap

    libtap: 1.12.0 -> 1.14.0
    AndersonTorres authored Apr 15, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    fpletz Franz Pletz
    Copy the full SHA
    0ee3bf4 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/libtap/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/libtap/default.nix
Original file line number Diff line number Diff line change
@@ -4,11 +4,11 @@ with stdenv.lib;
stdenv.mkDerivation rec{

pname = "libtap";
version = "1.12.0";
version = "1.14.0";

src = fetchurl {
url = "https://web-cpan.shlomifish.org/downloads/${pname}-${version}.tar.bz2";
sha256 = "1ms1770cx8c6q3lhn1chkzy12vzmjgvlms7cqhd2d3260j2wwv5s";
url = "https://web-cpan.shlomifish.org/downloads/${pname}-${version}.tar.xz";
sha256 = "1ga7rqmppa8ady665736cx443icscqlgflkqmxd4xbkzypmdj9bk";
};

nativeBuildInputs = [ pkgconfig ];