summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/slog/default.nix
blob: a4dc33d28dd71c97522674127d33093c2a120b59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ pkgs, stdenv, fetchFromGitHub }:

## Posix shell logging, use with:
# . $(command -v slog.sh)
stdenv.mkDerivation rec {
  name = "slog-${version}";
  version = "2017-10-27";

  src = fetchFromGitHub {
    owner = "makefu";
    repo = "slog";
    rev = "50367c3";
    sha256 = "16wlh8xz430101lrxmgl2wangbbhvyj4pg8k5aibnh76sgj6x77r";
  };

  installPhase = ''
    mkdir -p $out/bin
    install -m755 slog.sh $out/bin
  '';
}