Commit 4fef650c authored by Guy Chronister's avatar Guy Chronister
Browse files

ada: 3.1.2 -> 3.1.3

parent f819e95a
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -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";