Merge pull request #178301 from XYenon/fix/nali-update

nali: 0.3.2 -> 0.4.2
This commit is contained in:
Bobby Rong 2022-06-21 13:01:56 +08:00 committed by GitHub
commit eeb31742a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 5 deletions

View File

@ -13908,6 +13908,12 @@
githubId = 1962985;
name = "Vincenzo Mantova";
};
xyenon = {
name = "XYenon";
email = "i@xyenon.bid";
github = "xyenon";
githubId = 20698483;
};
xzfc = {
email = "xzfcpw@gmail.com";
github = "xzfc";

View File

@ -2,22 +2,22 @@
buildGoModule rec {
pname = "nali";
version = "0.3.2";
version = "0.4.2";
src = fetchFromGitHub {
owner = "zu1k";
repo = "nali";
rev = "v${version}";
sha256 = "sha256-iRLoUBA+Kzv1/LZQ8HCvR79K1riYErxEWhB0OmvFy2g=";
sha256 = "sha256-7NUUX4hDwvMBBQvxiB7P/lNHKgxwOFObdD6DUd0vX5c=";
};
vendorSha256 = "sha256-0u6n53hL2+GvqbYpAKN54n7uiTHSsgyjedt20nT1yRc=";
vendorSha256 = "sha256-Ld5HehK5MnPwl6KtIl0b4nQRiXO4DjKVPL1iti/WBIQ=";
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;
maintainers = with maintainers; [ diffumist ];
maintainers = with maintainers; [ diffumist xyenon ];
};
}

View File

@ -28452,7 +28452,9 @@ with pkgs;
nload = callPackage ../applications/networking/nload { };
nali = callPackage ../applications/networking/nali { };
nali = callPackage ../applications/networking/nali {
buildGoModule = buildGo118Module;
};
normalize = callPackage ../applications/audio/normalize { };