diff options
| author | Robert Scott <code@humanleg.org.uk> | 2024-05-06 23:42:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-06 23:42:31 +0100 |
| commit | 6559773d888326e1a843ef78a7fe7ea6319b8dfc (patch) | |
| tree | 5020aca6a52e77455d7fd54d94112b151778e013 | |
| parent | Merge pull request #309451 from numinit/mattermost-update-23.11 (diff) | |
| parent | uriparser: 0.9.7 -> 0.9.8 (diff) | |
| download | nixpkgs-6559773d888326e1a843ef78a7fe7ea6319b8dfc.tar.gz | |
Merge pull request #309578 from NixOS/backport-309543-to-release-23.11
[Backport release-23.11] uriparser: 0.9.7 -> 0.9.8
| -rw-r--r-- | pkgs/development/libraries/uriparser/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/uriparser/default.nix b/pkgs/development/libraries/uriparser/default.nix index 01ab983e1d6e..dd93f49f5946 100644 --- a/pkgs/development/libraries/uriparser/default.nix +++ b/pkgs/development/libraries/uriparser/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { pname = "uriparser"; - version = "0.9.7"; + version = "0.9.8"; # Release tarball differs from source tarball src = fetchurl { url = "https://github.com/uriparser/uriparser/releases/download/${pname}-${version}/${pname}-${version}.tar.bz2"; - sha256 = "sha256-0n3qDItvb7l5jwfK7e8c2WpuP8XGGJWWd04Zr6fd3tc="; + hash = "sha256-ctG1Wb46GAb3iKPZvjShsGPUKqI4spuk7mM9bv/NM70="; }; nativeBuildInputs = [ cmake ]; @@ -20,6 +20,7 @@ stdenv.mkDerivation rec { doCheck = stdenv.buildPlatform == stdenv.hostPlatform; meta = with lib; { + changelog = "https://github.com/uriparser/uriparser/blob/uriparser-${version}/ChangeLog"; description = "Strictly RFC 3986 compliant URI parsing library"; longDescription = '' uriparser is a strictly RFC 3986 compliant URI parsing and handling library written in C. |
