lol

Merge pull request #309543 from mweinelt/uriparser-0.9.8

uriparser: 0.9.7 -> 0.9.8

authored by

Martin Weinelt and committed by
GitHub
17dfd110 3d859c15

+3 -2
+3 -2
pkgs/development/libraries/uriparser/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "uriparser"; 5 - version = "0.9.7"; 5 + version = "0.9.8"; 6 6 7 7 # Release tarball differs from source tarball 8 8 src = fetchurl { 9 9 url = "https://github.com/uriparser/uriparser/releases/download/${pname}-${version}/${pname}-${version}.tar.bz2"; 10 - sha256 = "sha256-0n3qDItvb7l5jwfK7e8c2WpuP8XGGJWWd04Zr6fd3tc="; 10 + hash = "sha256-ctG1Wb46GAb3iKPZvjShsGPUKqI4spuk7mM9bv/NM70="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ cmake ]; ··· 20 20 doCheck = stdenv.buildPlatform == stdenv.hostPlatform; 21 21 22 22 meta = with lib; { 23 + changelog = "https://github.com/uriparser/uriparser/blob/uriparser-${version}/ChangeLog"; 23 24 description = "Strictly RFC 3986 compliant URI parsing library"; 24 25 longDescription = '' 25 26 uriparser is a strictly RFC 3986 compliant URI parsing and handling library written in C.