nixpkgs/pkgs/tools/system/localtime/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
988 B
Nix
Raw Normal View History

2021-12-08 15:19:03 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
, m4
}:
buildGoModule {
pname = "localtime";
version = "unstable-2022-02-20";
src = fetchFromGitHub {
owner = "Stebalien";
repo = "localtime";
rev = "c1e10aa4141ed2bb01986b48e0e942e618993c06";
hash = "sha256-bPQ1c2KUTkxx2g7IvLmrKgJKfRHTLlTXLR/QQ0O4CrI=";
};
2020-03-18 09:18:54 +00:00
vendorHash = "sha256-12JnEU41sp9qRP07p502EYogveE+aNdfmLwlDRbIdxU=";
2021-12-08 15:19:03 +00:00
nativeBuildInputs = [ m4 ];
buildPhase = ''
runHook preBuild
make PREFIX="$out"
runHook postBuild
'';
doCheck = false; # no tests
installPhase = ''
2021-12-08 15:19:03 +00:00
runHook preInstall
make PREFIX="$out" install
runHook postInstall
2018-04-05 22:15:20 +00:00
'';
meta = with lib; {
description = "Daemon for keeping the system timezone up-to-date based on the current location";
homepage = "https://github.com/Stebalien/localtime";
2021-12-08 15:19:03 +00:00
maintainers = with maintainers; [ lovesegfault ];
2018-09-12 20:05:26 +00:00
platforms = platforms.linux;
license = licenses.gpl3;
2023-11-27 01:17:53 +00:00
mainProgram = "localtimed";
};
}