3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/tz/default.nix

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

23 lines
526 B
Nix
Raw Normal View History

2021-03-23 17:17:58 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "tz";
2022-12-07 04:17:05 +00:00
version = "0.6.2";
2021-03-23 17:17:58 +00:00
src = fetchFromGitHub {
owner = "oz";
repo = "tz";
rev = "v${version}";
2022-12-07 04:17:05 +00:00
sha256 = "sha256-fl+Q6HNMSIo6E5SMBkTr6/hJN9akfJRBwSPaq7FcYDY=";
2021-03-23 17:17:58 +00:00
};
2022-12-07 04:17:05 +00:00
vendorSha256 = "sha256-lcCra4LyebkmelvBs0Dd2mn6R64Q5MaUWc5AP8V9pec=";
2021-03-23 17:17:58 +00:00
meta = with lib; {
description = "A time zone helper";
homepage = "https://github.com/oz/tz";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ siraben ];
};
}