53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildGoModule (finalAttrs: {
|
|
pname = "go-httpbin";
|
|
version = "2.18.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mccutchen";
|
|
repo = "go-httpbin";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-ixEbmppQ+4Udc5ytV4YPOpOT/iEbhjQIYGoOGL0dIw8=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
env.CGO_ENABLED = 0;
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
# tests are flaky
|
|
doCheck = false;
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
$out/bin/go-httpbin --help &> /dev/null
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
passthru = {
|
|
tests = { inherit (nixosTests) go-httpbin; };
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Reasonably complete and well-tested golang port of httpbin, with zero dependencies outside the go stdlib";
|
|
homepage = "https://github.com/mccutchen/go-httpbin";
|
|
changelog = "https://github.com/mccutchen/go-httpbin/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ defelo ];
|
|
mainProgram = "go-httpbin";
|
|
};
|
|
})
|