nixpkgs/pkgs/servers/echoip/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
866 B
Nix
Raw Normal View History

{ lib
, buildGoModule
, fetchFromGitHub
, makeWrapper
}:
2018-11-23 21:04:54 +00:00
2019-04-28 17:03:54 +00:00
buildGoModule {
pname = "echoip";
version = "unstable-2021-08-03";
2018-11-23 21:04:54 +00:00
src = fetchFromGitHub {
owner = "mpolden";
repo = "echoip";
rev = "ffa6674637a5bf906d78ae6675f9a4680a78ab7b";
sha256 = "sha256-yN7PIwoIi2SPwwFWnHDoXnwvKohkPPf4kVsNxHLpqCE=";
2018-11-23 21:04:54 +00:00
};
vendorHash = "sha256-lXYpkeGpBK+WGHqyLxJz7kS3t7a55q55QQLTqtxzroc=";
2018-11-23 21:04:54 +00:00
nativeBuildInputs = [ makeWrapper ];
2018-11-23 21:04:54 +00:00
postInstall = ''
install -D html/* -t $out/share/echoip/html
wrapProgram $out/bin/echoip \
--add-flags "-t $out/share/echoip/html"
2018-11-23 21:04:54 +00:00
'';
doCheck = false;
meta = with lib; {
description = "IP address lookup service";
homepage = "https://github.com/mpolden/echoip";
2018-11-23 21:04:54 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ rvolosatovs SuperSandro2000 ];
2023-11-27 01:17:53 +00:00
mainProgram = "echoip";
2018-11-23 21:04:54 +00:00
};
}