summary refs log tree commit diff
path: root/pkgs/tools/networking/goodhosts/default.nix
blob: fe24c2c06fd3369a1db157f9da47d961cc953c49 (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
33
34
35
{ lib
, buildGoModule
, fetchFromGitHub
, testers
}:

buildGoModule rec {
  pname = "goodhosts";
  version = "1.1.1";

  src = fetchFromGitHub {
    owner = "goodhosts";
    repo = "cli";
    rev = "v${version}";
    hash = "sha256-VXOMyYM4jS3gYxm3WiKw3uKeC535ppd9iHumPiupGbc=";
  };

  ldflags = [
    "-s -w -X main.version=${version}"
  ];

  postInstall = ''
    mv $out/bin/cli $out/bin/goodhosts
  '';

  vendorHash = "sha256-pL1z8cfnzcmX5iMVHQJGXYmzGuf8bp4Txbqoh5wSPWQ=";

  meta = with lib; {
    description = "A CLI tool for managing hostfiles";
    license = licenses.mit;
    homepage = "https://github.com/goodhosts/cli/tree/main";
    maintainers = with maintainers; [ schinmai-akamai ];
    mainProgram = "goodhosts";
  };
}