36 lines
941 B
Nix
36 lines
941 B
Nix
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "plumber";
|
||
|
version = "2.5.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "streamdal";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-ftXLipJQjRdOSNO56rIRfAKKU0kHtAK85hgcT3nYOKA=";
|
||
|
};
|
||
|
|
||
|
vendorHash = null;
|
||
|
|
||
|
# connection tests create a config file in user home directory
|
||
|
preCheck = ''
|
||
|
export HOME="$(mktemp -d)"
|
||
|
'';
|
||
|
|
||
|
ldflags = [
|
||
|
"-s"
|
||
|
"-w"
|
||
|
"-X github.com/streamdal/plumber/options.VERSION=${version}"
|
||
|
# remove once module in go.mod is renamed to github.com/batchcorp/streamdal
|
||
|
"-X github.com/batchcorp/plumber/options.VERSION=${version}"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "A CLI devtool for interacting with data in message systems like Kafka, RabbitMQ, GCP PubSub and more";
|
||
|
homepage = "https://github.com/streamdal/plumber";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ svrana ];
|
||
|
};
|
||
|
}
|