forked from mirrors/nixpkgs
ded247ada3
Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: Dmitry Bogatov <git#v1@kaction.cc>
57 lines
2 KiB
Nix
57 lines
2 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "driftctl";
|
|
version = "0.15.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cloudskiff";
|
|
repo = "driftctl";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-rWC4jqquVWJmHV/dnH+DsxlNiAY01xnq9z0/owS4Yis=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-d8vASP8KnUeUkaHRU8kCE7FCt2QLGu5ET5BN3GM2O9c=";
|
|
|
|
postUnpack = ''
|
|
# Without this, tests fail to locate aws/3.19.0.json
|
|
for prefix in / \
|
|
/pkg \
|
|
/pkg/analyser \
|
|
/pkg/alerter \
|
|
/pkg/remote \
|
|
/pkg/middlewares \
|
|
/pkg/cmd/scan/output \
|
|
/pkg/iac/terraform/state \
|
|
/pkg/iac/supplier ; do
|
|
mkdir -p ./source/$prefix/github.com/cloudskiff
|
|
ln -sf $PWD/source ./source/$prefix/github.com/cloudskiff/driftctl
|
|
done
|
|
|
|
# Disable check for latest version and telemetry, which are opt-out.
|
|
# Making it out-in is quite a job, and why bother?
|
|
find -name '*.go' \
|
|
| xargs sed -i 's,https://2lvzgmrf2e.execute-api.eu-west-3.amazonaws.com/,https://0.0.0.0/,g'
|
|
|
|
# and remove corresponding flags from --help, so things look tidy.
|
|
find -name driftctl.go | \
|
|
xargs sed -i -e '/("no-version-check"/ d' -e '/("disable-telemetry"/ d'
|
|
|
|
# Presumably it can be done with ldflags, but I failed to find incantation
|
|
# that would work, we here we go old-school.
|
|
find -name version.go | xargs sed -i -e 's/"dev"/"${version}"/'
|
|
find -name build.go | xargs sed -i -e 's/"dev"/"release"/'
|
|
|
|
# Fix the tests that checks for dev-dev.
|
|
find -name version_test.go | xargs sed -i -e 's/"dev-dev/"${version}/'
|
|
find -name driftctl_test.go | xargs sed -i -e 's/"dev-dev/"${version}/'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool to track infrastructure drift";
|
|
homepage = "https://github.com/cloudskiff/driftctl";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ kaction ];
|
|
};
|
|
}
|