librepcb: 1.1.0 -> 1.2.0
[NixPkgs.git] / pkgs / by-name / pl / plumber / package.nix
blob28265a13c4450b68f8c2e24892f429893a739aca
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "plumber";
5   version = "2.8.0";
7   src = fetchFromGitHub {
8     owner = "streamdal";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-38tLlFeQtXIiHuQa9c/IfIYbyf+GrOsERAdWQnHSeck=";
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   };