watchlog: init at 1.152.0

This commit is contained in:
Kevin Cox 2022-06-13 12:43:35 -04:00
parent 13f08d71ce
commit 41d033fc50
No known key found for this signature in database
GPG key ID: 9BB92CC1552E99AA
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{
lib,
rustPlatform,
fetchFromGitLab,
}:
rustPlatform.buildRustPackage rec {
pname = "watchlog";
version = "1.152.0";
src = fetchFromGitLab {
owner = "kevincox";
repo = "watchlog";
rev = "v${version}";
sha256 = "sha256-m0sqLi5qxQKfdFtHxo0DX4bV6lUNZP1JWt8NAfY+F5A=";
};
cargoSha256 = "sha256-uIaGIHBB/ntGyBZL45E61E9fELR8UGRieb/fJQsB5NE=";
meta = {
description = "Easier monitoring of live logs";
homepage = "https://gitlab.com/kevincox/watchlog";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ kevincox ];
};
}

View file

@ -11425,6 +11425,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) CoreServices Foundation;
};
watchlog = callPackage ../tools/misc/watchlog { };
watchman = callPackage ../development/tools/watchman {
inherit (darwin.apple_sdk.frameworks) CoreServices;
autoconf = buildPackages.autoconf269;