fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / au / automatic-timezoned / package.nix
blob161fadd40811fc00033f37f2213b89de110df5af
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "automatic-timezoned";
8   version = "2.0.40";
10   src = fetchFromGitHub {
11     owner = "maxbrunet";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-q7WEG5Y8YpRUwNgp+SLi2eV9Z/Ork6+QZmPqxpUf60I=";
15   };
17   cargoHash = "sha256-DJAQqPRcscYdrMYP0L09T6TtmDh3wuS89cWCvscyAak=";
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   };