Merge pull request #240036 from figsoda/tailer

tailer: init at unstable-2023-06-26
This commit is contained in:
Pol Dellaiera 2023-06-28 07:55:09 +02:00 committed by GitHub
commit ef9a2bf812
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

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

View file

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