conftest: 0.28.1 -> 0.28.2
This commit is contained in:
parent
23f71e9427
commit
f00dbf88e1
1 changed files with 17 additions and 6 deletions
|
@ -1,17 +1,16 @@
|
||||||
{ lib, buildGoModule, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "conftest";
|
pname = "conftest";
|
||||||
version = "0.28.1";
|
version = "0.28.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "open-policy-agent";
|
owner = "open-policy-agent";
|
||||||
repo = "conftest";
|
repo = "conftest";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-o2P14Nsu77AXO+UnMBXthhP3Q7kI7nd/lI6GFE2cs3M=";
|
sha256 = "sha256-lmmk6veBDI51UA/wnFB7Q3DTxZ9J/1qp0OoNgmBrR1Y=";
|
||||||
};
|
};
|
||||||
|
vendorSha256 = "sha256-NALyUjFL6OqgCke1QiUxbSNLAoaIMB2zeIWWEfcnCjs=";
|
||||||
vendorSha256 = "sha256-zzckZI/n00BBl166S7uonJFNQ4RJGLCkDyfLRoHZOtA=";
|
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-s"
|
"-s"
|
||||||
|
@ -19,10 +18,22 @@ buildGoModule rec {
|
||||||
"-X github.com/open-policy-agent/conftest/internal/commands.version=${version}"
|
"-X github.com/open-policy-agent/conftest/internal/commands.version=${version}"
|
||||||
];
|
];
|
||||||
|
|
||||||
HOME = "$TMPDIR";
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
export HOME="$TMPDIR"
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
installShellCompletion --cmd conftest \
|
||||||
|
--bash <($out/bin/conftest completion bash) \
|
||||||
|
--fish <($out/bin/conftest completion fish) \
|
||||||
|
--zsh <($out/bin/conftest completion zsh)
|
||||||
|
'';
|
||||||
|
|
||||||
doInstallCheck = true;
|
doInstallCheck = true;
|
||||||
installCheckPhase = ''
|
installCheckPhase = ''
|
||||||
|
export HOME="$TMPDIR"
|
||||||
$out/bin/conftest --version | grep ${version} > /dev/null
|
$out/bin/conftest --version | grep ${version} > /dev/null
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue