pomerium-cli: use new SRI hash format

This commit is contained in:
AndersonTorres 2022-06-02 21:54:33 -03:00
parent 37f5921344
commit a78c3a93ad

View file

@ -9,15 +9,17 @@ let
in in
buildGoModule rec { buildGoModule rec {
pname = "pomerium-cli"; pname = "pomerium-cli";
version = pomerium.version; inherit (pomerium) version;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pomerium"; owner = "pomerium";
repo = "cli"; repo = "cli";
rev = "v${version}"; rev = "v${version}";
hash = "sha256:0230b22xjnpykj8bcdahzzlsvlrd63z2cmg6yb246c5ngjs835q1"; hash = "sha256-AZeBtHy2MEPE8uZVJv4wLdOt6f9QNbaQnP5a2YVYYAg=";
}; };
vendorSha256 = "sha256:0xx22lmh6wip1d1bjrp4lgab3q9yilw54v4lg24lf3xhbsr5si9b"; vendorSha256 = "sha256-K0Vdsl6wD0eJeJRsUjiNPuGx1KPkZrlCCzdyAysVonc=";
subPackages = [ subPackages = [
"cmd/pomerium-cli" "cmd/pomerium-cli"
]; ];
@ -45,7 +47,11 @@ buildGoModule rec {
]; ];
installPhase = '' installPhase = ''
runHook preInstall
install -Dm0755 $GOPATH/bin/pomerium-cli $out/bin/pomerium-cli install -Dm0755 $GOPATH/bin/pomerium-cli $out/bin/pomerium-cli
runHook postInstall
''; '';
meta = with lib; { meta = with lib; {