01ed8ef136
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
26 lines
659 B
Nix
26 lines
659 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "automatic-timezoned";
|
|
version = "1.0.41";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "maxbrunet";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-KT1mVP2pMn6M8BPBdBgK94iLuAuoUwGo24L5IT5fVAQ=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-hfhSbpNVJm6OE/wL3aPNRV+kJGIZnpoTh8e/trRG21c=";
|
|
|
|
meta = with lib; {
|
|
description = "Automatically update system timezone based on location";
|
|
homepage = "https://github.com/maxbrunet/automatic-timezoned";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ maxbrunet ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|