81 lines
2.1 KiB
Nix
81 lines
2.1 KiB
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
, envoy
|
|
, zip
|
|
, nixosTests
|
|
}:
|
|
|
|
let
|
|
inherit (lib) concatStringsSep mapAttrsToList;
|
|
in
|
|
buildGoModule rec {
|
|
pname = "pomerium";
|
|
version = "0.14.7";
|
|
src = fetchFromGitHub {
|
|
owner = "pomerium";
|
|
repo = "pomerium";
|
|
rev = "v${version}";
|
|
hash = "sha256:1jb96jk5qmary4fi1z9zwmppdyskj0qb6qii8s8mwazjjxqj1z2s";
|
|
};
|
|
|
|
vendorSha256 = "sha256:1daabi9qc9nx8bafn26iw6rv4vx2xpd0nnk06265aqaksx26db0s";
|
|
subPackages = [
|
|
"cmd/pomerium"
|
|
"cmd/pomerium-cli"
|
|
];
|
|
|
|
ldflags = let
|
|
# Set a variety of useful meta variables for stamping the build with.
|
|
setVars = {
|
|
Version = "v${version}";
|
|
BuildMeta = "nixpkgs";
|
|
ProjectName = "pomerium";
|
|
ProjectURL = "github.com/pomerium/pomerium";
|
|
};
|
|
varFlags = concatStringsSep " " (mapAttrsToList (name: value: "-X github.com/pomerium/pomerium/internal/version.${name}=${value}") setVars);
|
|
in [
|
|
"${varFlags}"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
zip
|
|
];
|
|
|
|
# Pomerium expects to have envoy append to it in a zip.
|
|
# We use a store-only (-0) zip, so that the Nix scanner can find any store references we had in the envoy binary.
|
|
postBuild = ''
|
|
# Append Envoy
|
|
pushd $NIX_BUILD_TOP
|
|
mkdir -p envoy
|
|
cd envoy
|
|
cp ${envoy}/bin/envoy envoy
|
|
zip -0 envoy.zip envoy
|
|
popd
|
|
|
|
mv $GOPATH/bin/pomerium $GOPATH/bin/pomerium.old
|
|
cat $GOPATH/bin/pomerium.old $NIX_BUILD_TOP/envoy/envoy.zip >$GOPATH/bin/pomerium
|
|
zip --adjust-sfx $GOPATH/bin/pomerium
|
|
'';
|
|
|
|
# We also need to set dontStrip to avoid having the envoy ZIP stripped off the end.
|
|
dontStrip = true;
|
|
|
|
installPhase = ''
|
|
install -Dm0755 $GOPATH/bin/pomerium $out/bin/pomerium
|
|
install -Dm0755 $GOPATH/bin/pomerium-cli $out/bin/pomerium-cli
|
|
'';
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) pomerium;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pomerium.io";
|
|
description = "Authenticating reverse proxy";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ lukegb ];
|
|
platforms = [ "x86_64-linux" ]; # Envoy derivation is x86_64-linux only.
|
|
};
|
|
}
|