3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/system/localtime/default.nix
Michael Peyton Jones 66da10e80f
localtime: install systemd serice and polkit rules
- Use the right variables and `make install` to ensure all products are
installed.
- Remove unneeded build inputs: we don't need systemd or polkit to
install the service or polkit rules.
2019-06-16 13:46:52 +02:00

34 lines
828 B
Nix

{ stdenv, fetchFromGitHub, buildGoPackage, m4 }:
buildGoPackage rec {
name = "localtime-2017-11-07";
src = fetchFromGitHub {
owner = "Stebalien";
repo = "localtime";
rev = "2e7b4317c723406bd75b2a1d640219ab9f8090ce";
sha256 = "04fyna8p7q7skzx9fzmncd6gx7x5pwa9jh8a84hpljlvj0kldfs8";
};
goPackagePath = "github.com/Stebalien/localtime";
buildInputs = [ m4 ];
makeFlags = [ "PREFIX=$(out)" "BINDIR=$(bin)/bin" ];
buildPhase = ''
cd go/src/${goPackagePath}
make $makeFlags
'';
installPhase = ''
make install $makeFlags
'';
meta = with stdenv.lib; {
description = "A daemon for keeping the system timezone up-to-date based on the current location";
homepage = https://github.com/Stebalien/localtime;
platforms = platforms.linux;
license = licenses.gpl3;
};
}