tailer: unstable-2023-06-26 -> 0.1.1

Diff: 2f32e2640a...v0.1.1
This commit is contained in:
figsoda 2023-07-01 17:51:55 -04:00 committed by Anderson Torres
parent 149340b2ab
commit 20bb934115

View File

@ -3,20 +3,24 @@
, fetchFromGitHub
}:
buildGoModule {
buildGoModule rec {
pname = "tailer";
version = "unstable-2023-06-26";
version = "0.1.1";
src = fetchFromGitHub {
owner = "hionay";
repo = "tailer";
rev = "2f32e2640a220c990ae419d1562889971c9ed535";
hash = "sha256-L+5HlUv6g2o6ghqp8URfR7k5NlWqFhVBmEIsEjGy7aU=";
rev = "v${version}";
hash = "sha256-gPezz2ksqdCffgdAHwU2NMTar2glp5YGfA5C+tMYPtE=";
};
vendorHash = "sha256-nQqSvfN+ed/g5VkbD6XhZNA1G3CGGfwFDdadJ5+WoD0=";
ldflags = [ "-s" "-w" ];
ldflags = [
"-s"
"-w"
"-X=main.version=${version}"
];
meta = with lib; {
description = "A CLI tool to insert lines when command output stops";