about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/xurls/default.nix
blob: 4da65d9af0275c5429b9b1f24897a16789266ae6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ buildGoModule, lib, fetchFromGitHub }:

buildGoModule rec {
  pname = "xurls";
  version = "2.4.0";

  src = fetchFromGitHub {
    owner = "mvdan";
    repo = "xurls";
    rev = "v${version}";
    sha256 = "sha256-lyDcwbdVKyFRfsYCcPAgIgvrEEdwK0lxmJTvMJcFBCw=";
  };

  vendorSha256 = "sha256-lJzgJxW/GW3J09uKQGoEX+UsHnB1pGG71U/zy4b9rXo=";

  ldflags = [ "-s" "-w" ];

  meta = with lib; {
    description = "Extract urls from text";
    homepage = "https://github.com/mvdan/xurls";
    maintainers = with maintainers; [ koral ];
    license = licenses.bsd3;
  };
}