infracost: improvements

added -s and -w ldflags saving 2MB
added version ldflag
added pre and post check hooks
added completions
added installCheckPhase
added some more meta details
added myself as a maintainer
This commit is contained in:
06kellyjac 2021-07-11 18:48:24 +01:00
parent 30ada3e6af
commit 8c6d56dddb

View file

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub, terraform }:
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, terraform }:
buildGoModule rec {
pname = "infracost";
@ -10,16 +10,57 @@ buildGoModule rec {
repo = "infracost";
sha256 = "sha256-3AH/VUKIno/jObep5GNfIpyOW5TcfZ5UZyornJWTGOw=";
};
vendorSha256 = "sha256-zMEtVPyzwW4SrbpydDFDqgHEC0/khkrSxlEnQ5I0he8=";
ldflags = [ "-s" "-w" "-X github.com/infracost/infracost/internal/version.Version=v${version}" ];
# Install completions post-install
nativeBuildInputs = [ installShellFiles ];
checkInputs = [ terraform ];
checkPhase = "make test";
checkPhase = ''
runHook preCheck
make test
runHook postCheck
'';
postInstall = ''
# panic if .config directory can't be accessed
# https://github.com/infracost/infracost/pull/862
export HOME="$TMPDIR"
mkdir -p "$HOME/.config/infracost"
export INFRACOST_SKIP_UPDATE_CHECK=true
installShellCompletion --cmd infracost \
--bash <($out/bin/infracost completion --shell bash) \
--fish <($out/bin/infracost completion --shell fish) \
--zsh <($out/bin/infracost completion --shell zsh)
'';
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
export HOME="$TMPDIR"
mkdir -p "$HOME/.config/infracost"
export INFRACOST_SKIP_UPDATE_CHECK=true
$out/bin/infracost --help
$out/bin/infracost --version | grep "v${version}"
runHook postInstallCheck
'';
meta = with lib; {
homepage = "https://infracost.io";
changelog = "https://github.com/infracost/infracost/releases/tag/v${version}";
description = "Cloud cost estimates for Terraform in your CLI and pull requests";
homepage = "https://github.com/infracost/infracost";
longDescription = ''
Infracost shows hourly and monthly cost estimates for a Terraform project.
This helps developers, DevOps et al. quickly see the cost breakdown and
compare different deployment options upfront.
'';
license = [ licenses.asl20 ];
maintainers = [ maintainers.davegallant ];
maintainers = with maintainers; [ davegallant jk ];
};
}