nixpkgs/pkgs/tools/system/localtime/default.nix
Michael Peyton Jones 0073c1fb0b
localtime: use upstream unit and fix polkit rule installation
Also don't allocate a user - the upstream unit uses DynamicUser.
2019-06-19 11:07:44 +01:00

37 lines
869 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=${placeholder "out"}"
"BINDIR=${placeholder "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;
};
}