Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildGoModule, lib, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "xurls"; 5 version = "2.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "mvdan"; 9 repo = "xurls"; 10 rev = "v${version}"; 11 sha256 = "sha256-9hPXZ/t15+LG9fji1gyeWhUrYOr6eGyKYg3a1SmHJpQ="; 12 }; 13 14 vendorHash = "sha256-eVK7qU+NWsarBsEpg6aGow/urmhIpU3Z9RwoTvSymXo="; 15 16 ldflags = [ "-s" "-w" ]; 17 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 }; 24}