watchlog: init at 1.152.0

main
Kevin Cox 2 years ago
parent 13f08d71ce
commit 41d033fc50
No known key found for this signature in database
GPG Key ID: 9BB92CC1552E99AA
  1. 26
      pkgs/tools/misc/watchlog/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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 ];
};
}

@ -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;

Loading…
Cancel
Save