about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/unfurl/default.nix
blob: 35a43ea2fdbd7c49011129e3015b4f9d1b4c2829 (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
25
26
27
28
29
30
31
32
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "unfurl";
  version = "0.4.3";

  src = fetchFromGitHub {
    owner = "tomnomnom";
    repo = "unfurl";
    rev = "v${version}";
    hash = "sha256-7aLe5d8ku5llfJ2xh8fT56vqj12/CJ1ez3Vte2PF8KQ=";
  };

  vendorHash = "sha256-Kpd916+jjGvw56N122Ej4CXVcv1/xr1THkjsrhkIy+U=";

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

  # tests tries to download a list of tlds from the internet
  postPatch = ''
    echo com > /tmp/.tlds
  '';

  meta = with lib; {
    description = "Pull out bits of URLs provided on stdin";
    homepage = "https://github.com/tomnomnom/unfurl";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
  };
}