about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/tinystatus/default.nix
blob: e4e930e799a8058d625d404066f3147044222ba5 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{ lib, stdenvNoCC, makeWrapper, netcat, curl, unixtools, coreutils, mktemp
, findutils, gnugrep, fetchFromGitHub, gawk, gnused }:

stdenvNoCC.mkDerivation rec {
  pname = "tinystatus";
  version = "unstable-2021-07-09";

  src = fetchFromGitHub {
    owner = "bderenzo";
    repo = "tinystatus";
    rev = "fc128adf240261ac99ea3e3be8d65a92eda52a73";
    sha256 = "sha256-FvQwibm6F10l9/U3RnNTGu+C2JjHOwbv62VxXAfI7/s=";
  };

  nativeBuildInputs = [ makeWrapper ];

  runtimeInputs = [
    curl
    netcat
    unixtools.ping
    coreutils
    mktemp
    findutils
    gnugrep
    gawk
    gnused
  ];

  installPhase = ''
    runHook preInstall
    install -Dm555 tinystatus $out/bin/tinystatus
    wrapProgram $out/bin/tinystatus \
      --set PATH "${lib.makeBinPath runtimeInputs}"
    runHook postInstall
  '';

  doInstallCheck = true;

  installCheckPhase = ''
    runHook preCheck

    cat <<EOF >test.csv
    ping, 0, testing, this.should.fail.example.com
    EOF

    $out/bin/tinystatus test.csv | grep Disrupted

    runHook postCheck
  '';

  meta = with lib; {
    description = "A static HTML status page generator written in pure shell";
    homepage = "https://github.com/bderenzo/tinystatus";
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = with maintainers; [ matthewcroughan ];
  };
}