ada: 3.1.2 -> 3.1.3

This commit is contained in:
Guy Chronister
2025-03-11 15:36:19 -05:00
parent f819e95afc
commit 4fef650c7d
+5 -2
View File
@@ -3,17 +3,18 @@
stdenv,
fetchFromGitHub,
cmake,
nix-update-script,
}:
stdenv.mkDerivation rec {
pname = "ada";
version = "3.1.3";
version = "3.2.1";
src = fetchFromGitHub {
owner = "ada-url";
repo = "ada";
tag = "v${version}";
hash = "sha256-WQjScror93W7E8j34PbVL6FENy83MpnirTgit3/+dWw=";
hash = "sha256-x58zGkuKEUqlJEdIvLFzwHZHJAzCsFV9EQCpi+zmV1o=";
};
nativeBuildInputs = [ cmake ];
@@ -24,6 +25,8 @@ stdenv.mkDerivation rec {
(lib.cmakeBool "ADA_TESTING" false)
];
passthru.updateScript = nix-update-script { };
meta = {
description = "WHATWG-compliant and fast URL parser written in modern C";
homepage = "https://github.com/ada-url/ada";