summary refs log tree commit diff
path: root/pkgs/servers/timetagger/default.nix
blob: 2b060ed517407c3ce65ebe25eb2617cca9e5358f (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
{ lib
, python3
, fetchFromGitHub

, addr ? "127.0.0.1"
, port ? 8082
}:

#
# Timetagger itself is a library that a user must write a "run.py" script for
# We provide a basic "run.py" script with this package, which simply starts
# timetagger.
#

python3.pkgs.buildPythonApplication {
  inherit (python3.pkgs.timetagger) pname version src meta;

  propagatedBuildInputs = with python3.pkgs; [
    setuptools
    timetagger
  ];

  format = "custom";
  installPhase = ''
    mkdir -p $out/bin
    echo "#!${python3.interpreter}" >> $out/bin/timetagger
    cat run.py >> $out/bin/timetagger
    sed -Ei 's,0\.0\.0\.0:80,${addr}:${toString port},' $out/bin/timetagger
    chmod +x $out/bin/timetagger
  '';
}