Merge pull request #145324 from Diffumist/nali

This commit is contained in:
Maciej Krüger 2021-11-10 09:47:47 +01:00 committed by GitHub
commit 8c289036b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "nali";
version = "0.3.2";
src = fetchFromGitHub {
owner = "zu1k";
repo = "nali";
rev = "v${version}";
sha256 = "sha256-iRLoUBA+Kzv1/LZQ8HCvR79K1riYErxEWhB0OmvFy2g=";
};
vendorSha256 = "sha256-Kb2T+zDUuH+Rx8amYsTIhR5L3DIx5nGcDGqxHOn90NU=";
subPackages = [ "." ];
runVend = true;
meta = with lib; {
description = "An offline tool for querying IP geographic information and CDN provider";
homepage = "https://github.com/zu1k/nali";
license = licenses.mit;
maintainers = with maintainers; [ diffumist ];
};
}

View file

@ -26709,6 +26709,8 @@ with pkgs;
nload = callPackage ../applications/networking/nload { };
nali = callPackage ../applications/networking/nali { };
normalize = callPackage ../applications/audio/normalize { };
mailspring = callPackage ../applications/networking/mailreaders/mailspring {};