Add localtime package and nixos module

Simple daemon for keeping system timezone up-to-date via geoclue2.

Sadly i3 status needs to be restarted for timezone changes.
This commit is contained in:
Domen Kožar
2017-12-03 11:41:22 +01:00
parent ecd0e11851
commit d64ba1c060
4 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{ stdenv, go, systemd, polkit, fetchFromGitHub, m4 }:
stdenv.mkDerivation {
name = "localtime-2017-11-07";
src = fetchFromGitHub {
owner = "Stebalien";
repo = "localtime";
rev = "2e7b4317c723406bd75b2a1d640219ab9f8090ce";
sha256 = "04fyna8p7q7skzx9fzmncd6gx7x5pwa9jh8a84hpljlvj0kldfs8";
};
buildInputs = [ go systemd polkit m4 ];
makeFlags = [ "PREFIX=$(out)" ];
meta = {
description = "A daemon for keeping the system timezone up-to-date based on the current location";
homepage = https://github.com/Stebalien/localtime;
platforms = stdenv.lib.platforms.linux;
};
}