depot/third_party/nixpkgs/pkgs/tools/misc/easeprobe/default.nix
Default email 01ed8ef136 Project import generated by Copybara.
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
2022-11-21 19:40:18 +02:00

37 lines
883 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "easeprobe";
version = "1.9.0";
src = fetchFromGitHub {
owner = "megaease";
repo = pname;
rev = "v${version}";
sha256 = "sha256-iw24TuK5nbHabzRdaJ8X/MzRPNP35M8RjhKnZZXjVfA=";
};
vendorSha256 = "sha256-bfqP57YS2KD6CuFytJyWYCFl0Cx/JJgc1CeW13yBUoo=";
subPackages = [ "cmd/easeprobe" ];
CGO_ENABLED = 0;
ldflags = [
"-s"
"-w"
"-extldflags -static"
"-X github.com/megaease/easeprobe/global.Ver=${version}"
"-X github.com/megaease/easeprobe/pkg/version.REPO=megaease/easeprobe"
];
meta = with lib; {
description = "A simple, standalone, and lightweight tool that can do health/status checking, written in Go";
homepage = "https://github.com/megaease/easeprobe";
license = licenses.asl20;
maintainers = with maintainers; [ dit7ya ];
};
}