evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / pl / plumber / package.nix
blobfc907e880241c8fb2ae1f147dd2587e6996cfe3e
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "plumber";
5   version = "2.7.1";
7   src = fetchFromGitHub {
8     owner = "streamdal";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-L8vpaqt9yCIP3TLPSNUrOC6hXc71mzl4lqiaoNS6zls=";
12   };
14   vendorHash = null;
16   # connection tests create a config file in user home directory
17   preCheck = ''
18     export HOME="$(mktemp -d)"
19   '';
21   subPackages = [ "." ];
23   ldflags = [
24     "-s"
25     "-w"
26     "-X github.com/streamdal/plumber/options.VERSION=${version}"
27   ];
29   meta = with lib; {
30     description = "CLI devtool for interacting with data in message systems like Kafka, RabbitMQ, GCP PubSub and more";
31     mainProgram = "plumber";
32     homepage = "https://github.com/streamdal/plumber";
33     license = licenses.mit;
34     maintainers = with maintainers; [ svrana ];
35   };