Merge pull request #117383 from siraben/tz-init

tz: init at 0.4
This commit is contained in:
Sandro 2021-03-24 18:27:56 +01:00 committed by GitHub
commit b3e20ea813
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "tz";
version = "0.4";
src = fetchFromGitHub {
owner = "oz";
repo = "tz";
rev = "v${version}";
sha256 = "sha256-36nTau7xjABdeUOioHar28cuawFWW3DBaDH0YAvdufI=";
};
vendorSha256 = "sha256-Soa87I7oMa34LjYKxNAz9Limi0kQ6JUtb/zI4G7yZnw=";
meta = with lib; {
description = "A time zone helper";
homepage = "https://github.com/oz/tz";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ siraben ];
};
}

View File

@ -8779,6 +8779,8 @@ in
tydra = callPackage ../tools/misc/tydra { };
tz = callPackage ../tools/misc/tz { };
u9fs = callPackage ../servers/u9fs { };
ua = callPackage ../tools/networking/ua { };