forked from mirrors/nixpkgs
88f65fca79
The go sum db is a hosted service that appears to be generating a new inclusion proof each time this build is run (rather than using the one from the previous run). Since this ends up the module directory + thus hash, it's breaking deterministic builds. Co-authored-by: Roman Volosatovs <rvolosatovs@riseup.net>
40 lines
1,012 B
Nix
40 lines
1,012 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "conftest";
|
|
version = "0.14.0";
|
|
|
|
# Something subtle in the go sum db is causing every download to
|
|
# get a new sum (and thus breaking the hash). This disables the
|
|
# fetching of the sum from the go sum database.
|
|
modBuildPhase = ''
|
|
runHook preBuild
|
|
GONOSUMDB=* go mod download
|
|
runHook postBuild
|
|
'';
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "instrumenta";
|
|
repo = "conftest";
|
|
rev = "v${version}";
|
|
sha256 = "0fjz6ad8rnznlp1kiyb3c6anhjs6v6acgziw4hmyz0xva4jnspsh";
|
|
};
|
|
|
|
modSha256 = "1xwqlqx5794hsi14h5gqg69gjcqcma24ha0fxn0vffqgqs2cz1d1";
|
|
|
|
buildFlagsArray = ''
|
|
-ldflags=
|
|
-X main.version=${version}
|
|
'';
|
|
|
|
subPackages = [ "cmd" ];
|
|
|
|
meta = with lib; {
|
|
description = "Write tests against structured configuration data";
|
|
homepage = https://github.com/instrumenta/conftest;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ yurrriq ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|