nixpkgs/pkgs/servers/http/pomerium/default.nix

92 lines
2.4 KiB
Nix
Raw Normal View History

2021-01-08 01:58:22 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
, envoy
, zip
, nixosTests
2021-01-08 01:58:22 +00:00
}:
let
inherit (lib) concatStringsSep concatMap id mapAttrsToList;
2021-01-08 01:58:22 +00:00
in
buildGoModule rec {
pname = "pomerium";
2021-09-18 02:57:32 +00:00
version = "0.15.7";
2021-01-08 01:58:22 +00:00
src = fetchFromGitHub {
owner = "pomerium";
repo = "pomerium";
rev = "v${version}";
2021-09-18 02:57:32 +00:00
hash = "sha256:0adlk4ylny1z43x1dw3ny0s1932vhb61hpf5wdz4r65y8k9qyfgr";
2021-01-08 01:58:22 +00:00
};
2021-09-18 02:57:32 +00:00
vendorSha256 = "sha256:1fszfbra84pcs8v1h2kf7iy603vf9v2ysg6il76aqmqrxmb1p7nv";
2021-01-08 01:58:22 +00:00
subPackages = [
"cmd/pomerium"
"cmd/pomerium-cli"
];
2021-08-26 06:45:51 +00:00
ldflags = let
2021-01-08 01:58:22 +00:00
# Set a variety of useful meta variables for stamping the build with.
setVars = {
"github.com/pomerium/pomerium/internal/version" = {
Version = "v${version}";
BuildMeta = "nixpkgs";
ProjectName = "pomerium";
ProjectURL = "github.com/pomerium/pomerium";
};
"github.com/pomerium/pomerium/internal/envoy" = {
OverrideEnvoyPath = "${envoy}/bin/envoy";
};
2021-01-08 01:58:22 +00:00
};
concatStringsSpace = list: concatStringsSep " " list;
mapAttrsToFlatList = fn: list: concatMap id (mapAttrsToList fn list);
varFlags = concatStringsSpace (
mapAttrsToFlatList (package: packageVars:
mapAttrsToList (variable: value:
"-X ${package}.${variable}=${value}"
) packageVars
) setVars);
2021-01-08 01:58:22 +00:00
in [
2021-08-26 06:45:51 +00:00
"${varFlags}"
2021-01-08 01:58:22 +00:00
];
2021-09-18 02:57:32 +00:00
preBuild = ''
# Replace embedded envoy with nothing.
# We set OverrideEnvoyPath above, so rawBinary should never get looked at
# but we still need to set a checksum/version.
2021-09-18 02:57:32 +00:00
rm internal/envoy/files/files_{darwin,linux}*.go
cat <<EOF >internal/envoy/files/files_generic.go
package files
import _ "embed" // embed
var rawBinary []byte
2021-01-08 01:58:22 +00:00
2021-09-18 02:57:32 +00:00
//go:embed envoy.sha256
var rawChecksum string
2021-01-08 01:58:22 +00:00
2021-09-18 02:57:32 +00:00
//go:embed envoy.version
var rawVersion string
EOF
sha256sum '${envoy}/bin/envoy' > internal/envoy/files/envoy.sha256
echo '${envoy.version}' > internal/envoy/files/envoy.version
2021-01-08 01:58:22 +00:00
'';
installPhase = ''
install -Dm0755 $GOPATH/bin/pomerium $out/bin/pomerium
install -Dm0755 $GOPATH/bin/pomerium-cli $out/bin/pomerium-cli
'';
passthru.tests = {
inherit (nixosTests) pomerium;
};
2021-01-08 01:58:22 +00:00
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.
};
}