1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 15:11:35 +00:00
nixpkgs/pkgs/tools/system/localtime/default.nix

40 lines
931 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoPackage, m4 }:
buildGoPackage rec {
pname = "localtime";
2021-07-29 13:44:18 +01:00
version = "unstable-2017-11-07";
src = fetchFromGitHub {
owner = "Stebalien";
repo = "localtime";
rev = "2e7b4317c723406bd75b2a1d640219ab9f8090ce";
sha256 = "04fyna8p7q7skzx9fzmncd6gx7x5pwa9jh8a84hpljlvj0kldfs8";
};
2020-03-18 09:18:54 +00:00
goPackagePath = "github.com/Stebalien/localtime";
2018-09-12 21:05:26 +01:00
2020-03-18 09:18:54 +00:00
nativeBuildInputs = [ m4 ];
2020-03-18 09:18:54 +00:00
makeFlags = [
"PREFIX=${placeholder "out"}"
"BINDIR=${placeholder "out"}/bin"
];
buildPhase = ''
cd go/src/${goPackagePath}
make $makeFlags
'';
installPhase = ''
make install $makeFlags
2018-04-05 23:15:20 +01:00
'';
meta = with lib; {
description = "A daemon for keeping the system timezone up-to-date based on the current location";
homepage = "https://github.com/Stebalien/localtime";
2021-07-29 13:44:18 +01:00
maintainers = with maintainers; [ ];
2018-09-12 21:05:26 +01:00
platforms = platforms.linux;
license = licenses.gpl3;
};
}