watchlog: init at 1.152.0
This commit is contained in:
parent
13f08d71ce
commit
41d033fc50
26
pkgs/tools/misc/watchlog/default.nix
Normal file
26
pkgs/tools/misc/watchlog/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -11425,6 +11425,8 @@ with pkgs;
|
|||||||
inherit (darwin.apple_sdk.frameworks) CoreServices Foundation;
|
inherit (darwin.apple_sdk.frameworks) CoreServices Foundation;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
watchlog = callPackage ../tools/misc/watchlog { };
|
||||||
|
|
||||||
watchman = callPackage ../development/tools/watchman {
|
watchman = callPackage ../development/tools/watchman {
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||||
autoconf = buildPackages.autoconf269;
|
autoconf = buildPackages.autoconf269;
|
||||||
|
Loading…
Reference in New Issue
Block a user