about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/echoip/default.nix
blob: 91e0818a9ccaf7be4bb95c9ae8aa830689005427 (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
36
{ lib
, buildGoModule
, fetchFromGitHub
, makeWrapper
}:

buildGoModule {
  pname = "echoip";
  version = "unstable-2021-08-03";

  src = fetchFromGitHub {
    owner = "mpolden";
    repo = "echoip";
    rev = "ffa6674637a5bf906d78ae6675f9a4680a78ab7b";
    sha256 = "sha256-yN7PIwoIi2SPwwFWnHDoXnwvKohkPPf4kVsNxHLpqCE=";
  };

  vendorSha256 = "sha256-lXYpkeGpBK+WGHqyLxJz7kS3t7a55q55QQLTqtxzroc=";

  nativeBuildInputs = [ makeWrapper ];

  postInstall = ''
    install -D html/* -t $out/share/echoip/html
    wrapProgram $out/bin/echoip \
      --add-flags "-t $out/share/echoip/html"
  '';

  doCheck = false;

  meta = with lib; {
    description = "IP address lookup service";
    homepage = "https://github.com/mpolden/echoip";
    license = licenses.bsd3;
    maintainers = with maintainers; [ rvolosatovs SuperSandro2000 ];
  };
}