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

Commits on May 31, 2020

  1. uriparser: 0.9.3 -> 0.9.4

    veprbl committed May 31, 2020
    Copy the full SHA
    91b828f View commit details

Commits on Jun 13, 2020

  1. Merge pull request #89277 from veprbl/uriparser_0_9_4

    uriparser: 0.9.3 -> 0.9.4
    veprbl authored Jun 13, 2020
    Copy the full SHA
    4361446 View commit details
Showing with 2 additions and 10 deletions.
  1. +2 −10 pkgs/development/libraries/uriparser/default.nix
12 changes: 2 additions & 10 deletions pkgs/development/libraries/uriparser/default.nix
Original file line number Diff line number Diff line change
@@ -2,22 +2,14 @@

stdenv.mkDerivation rec {
pname = "uriparser";
version = "0.9.3";
version = "0.9.4";

# Release tarball differs from source tarball
src = fetchurl {
url = "https://github.com/uriparser/uriparser/releases/download/${pname}-${version}/${pname}-${version}.tar.bz2";
sha256 = "13z234jdaqs9jj7i66gcv4q1rgsypjz6cighnlm1j4g80pdlmbr8";
sha256 = "0yzqp1j6sglyrmwcasgn7zlwg841p3nbxy0h78ngq20lc7jspkdp";
};

patches = [
# fixes tests
(fetchpatch {
url = "https://github.com/uriparser/uriparser/commit/f870e6c68696a6018702caa5c8a2feba9b0f99fa.diff";
sha256 = "1nd6bhys9hwy6ippa42vm95zhw6hldm1s4xbdzmdjswc96as1ff5";
})
];

nativeBuildInputs = [ cmake ];

cmakeFlags = [