biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / tzupdate / default.nix
blobadfb93fb0246d34c11a1fa47325156d06e6b5cb8
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "tzupdate";
9   version = "3.1.0";
11   src = fetchFromGitHub {
12     owner = "cdown";
13     repo = "tzupdate";
14     rev = "refs/tags/${version}";
15     hash = "sha256-eod4yFzX7pATNQmG7jU+r9mnC9nprJ55ufMXpKjw/YI=";
16   };
18   cargoHash = "sha256-5+lp5xlwJxFDqzVxptJPX7z0iLoMkgdwHxvRVIXHF7Y=";
20   meta = {
21     description = "Set the system timezone based on IP geolocation";
22     homepage = "https://github.com/cdown/tzupdate";
23     license = lib.licenses.mit;
24     maintainers = with lib.maintainers; [
25       camillemndn
26       doronbehar
27     ];
28     platforms = lib.platforms.linux;
29     mainProgram = "tzupdate";
30   };