Merge pull request #240036 from figsoda/tailer
tailer: init at unstable-2023-06-26
This commit is contained in:
commit
ef9a2bf812
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/misc/tailer/default.nix
Normal file
27
pkgs/tools/misc/tailer/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule {
|
||||
pname = "tailer";
|
||||
version = "unstable-2023-06-26";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hionay";
|
||||
repo = "tailer";
|
||||
rev = "2f32e2640a220c990ae419d1562889971c9ed535";
|
||||
hash = "sha256-L+5HlUv6g2o6ghqp8URfR7k5NlWqFhVBmEIsEjGy7aU=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-nQqSvfN+ed/g5VkbD6XhZNA1G3CGGfwFDdadJ5+WoD0=";
|
||||
|
||||
ldflags = [ "-s" "-w" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A CLI tool to insert lines when command output stops";
|
||||
homepage = "https://github.com/hionay/tailer";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
|
@ -13042,6 +13042,8 @@ with pkgs;
|
|||
|
||||
tagtime = callPackage ../applications/misc/tagtime { };
|
||||
|
||||
tailer = callPackage ../tools/misc/tailer { };
|
||||
|
||||
inherit (callPackages ../applications/networking/taler { })
|
||||
taler-exchange taler-merchant;
|
||||
|
||||
|
|
Loading…
Reference in a new issue