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
524 B
Nix
Raw Normal View History

2021-03-23 17:17:58 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "tz";
2023-01-18 10:37:00 +00:00
version = "0.6.3";
2021-03-23 17:17:58 +00:00
src = fetchFromGitHub {
owner = "oz";
repo = "tz";
rev = "v${version}";
2023-01-18 10:37:00 +00:00
sha256 = "sha256-yeCoBDorwwj3+tqKzoAjtMdYmjqscks/qU8EkmO/D5k=";
2021-03-23 17:17:58 +00:00
};
2023-01-18 10:37:00 +00:00
vendorHash = "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 ];
};
}