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