ma pkgs.slog: init

This commit is contained in:
makefu 2017-10-27 10:32:42 +02:00
parent b4580347a6
commit 346ba71f9c
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225

View File

@ -0,0 +1,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
'';
}