watchlog 1.167.0

A command-line utility to help you see how a log is moving.
1
2
3
4
5
6
7
8
9
10
11
{
	nixpkgs ? import <nixpkgs> {},
	cache ? null,
	naersk ? nixpkgs.pkgs.callPackage (fetchTarball "https://github.com/nmattia/naersk/archive/master.tar.gz") {},
}:
with nixpkgs;
rec {
	watchlog = naersk.buildPackage {
		root = pkgs.nix-gitignore.gitignoreSource [".*" "*.nix"] ./.;
	};
}