biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / system / automatic-timezoned / default.nix
blobcd9aea8104e50ff6907ff29c3c0e7b952c025f35
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "automatic-timezoned";
8   version = "2.0.34";
10   src = fetchFromGitHub {
11     owner = "maxbrunet";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-NWVc+rPlW3GFHTADKEHjzDAHiicKd4HlJSD4MR2mqGQ=";
15   };
17   cargoHash = "sha256-6QPgBP8K4HvivlVxWzIX8y37ltHEScUzmf5Js8gMN34=";
19   meta = with lib; {
20     description = "Automatically update system timezone based on location";
21     homepage = "https://github.com/maxbrunet/automatic-timezoned";
22     changelog = "https://github.com/maxbrunet/automatic-timezoned/blob/v${version}/CHANGELOG.md";
23     license = licenses.gpl3;
24     maintainers = with maintainers; [ maxbrunet ];
25     platforms = platforms.linux;
26     mainProgram = "automatic-timezoned";
27   };