biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / xurls / default.nix
blobdc0825b88d4fc2ffca8c33c9ac2a84cf92b4bb70
1 { buildGoModule, lib, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "xurls";
5   version = "2.5.0";
7   src = fetchFromGitHub {
8     owner = "mvdan";
9     repo = "xurls";
10     rev = "v${version}";
11     sha256 = "sha256-9hPXZ/t15+LG9fji1gyeWhUrYOr6eGyKYg3a1SmHJpQ=";
12   };
14   vendorHash = "sha256-eVK7qU+NWsarBsEpg6aGow/urmhIpU3Z9RwoTvSymXo=";
16   ldflags = [ "-s" "-w" ];
18   meta = with lib; {
19     description = "Extract urls from text";
20     homepage = "https://github.com/mvdan/xurls";
21     maintainers = with maintainers; [ koral ];
22     license = licenses.bsd3;
23   };