2022-10-08 20:16:33 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "automatic-timezoned";
|
2023-07-09 12:09:17 +00:00
|
|
|
version = "1.0.108";
|
2022-10-08 20:16:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "maxbrunet";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-07-09 12:09:17 +00:00
|
|
|
sha256 = "sha256-WPSwm11yVSuFTsLmNDn2xGaucyUoSu4EpFVjTpkAMS8=";
|
2022-10-08 20:16:33 +00:00
|
|
|
};
|
|
|
|
|
2023-07-09 12:09:17 +00:00
|
|
|
cargoHash = "sha256-XR6SpZhsuMfqx4Ns9g/+DOTm622OU8tltwW9Oe1PE2I=";
|
2022-10-08 20:16:33 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Automatically update system timezone based on location";
|
|
|
|
homepage = "https://github.com/maxbrunet/automatic-timezoned";
|
2022-11-25 19:11:50 +00:00
|
|
|
changelog = "https://github.com/maxbrunet/automatic-timezoned/blob/v${version}/CHANGELOG.md";
|
2022-10-08 20:16:33 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ maxbrunet ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|