nixpkgs/pkgs/applications/networking/nali/default.nix

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

24 lines
616 B
Nix
Raw Normal View History

2021-11-10 08:27:32 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "nali";
2023-02-08 17:27:01 +00:00
version = "0.7.1";
2021-11-10 08:27:32 +00:00
src = fetchFromGitHub {
owner = "zu1k";
repo = "nali";
rev = "v${version}";
2023-02-08 17:27:01 +00:00
sha256 = "sha256-ZJnQiTcfvxHFgRNytQANs/lF4hy0S0cXOy8IuGECYi0=";
2021-11-10 08:27:32 +00:00
};
2023-02-08 17:27:01 +00:00
vendorHash = "sha256-TLij88IksL0+pARKVhEhPg6qUPAXMlL2DWJk4ynahUs=";
2021-11-10 08:27:32 +00:00
subPackages = [ "." ];
meta = with lib; {
description = "An offline tool for querying IP geographic information and CDN provider";
homepage = "https://github.com/zu1k/nali";
license = licenses.mit;
2022-06-20 05:21:28 +00:00
maintainers = with maintainers; [ diffumist xyenon ];
2021-11-10 08:27:32 +00:00
};
}