summary refs log tree commit diff
path: root/pkgs/tools/system/localtime/default.nix
blob: 805a70c74e9e7737e9649bf497a872f0772e5291 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ 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";

  nativeBuildInputs = [ m4 ];

  makeFlags = [
    "PREFIX=${placeholder "out"}"
    "BINDIR=${placeholder "out"}/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;
  };
}