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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

127 lines
3.1 KiB
Nix
Raw Normal View History

2021-01-08 01:58:22 +00:00
{ buildGoModule
, fetchFromGitHub
2022-08-24 01:03:27 +00:00
, callPackage
2021-01-08 01:58:22 +00:00
, lib
, envoy
, mkYarnPackage
, fetchYarnDeps
, nixosTests
2022-03-11 14:01:27 +00:00
, pomerium-cli
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";
2022-09-13 07:39:15 +00:00
version = "0.19.1";
src = fetchFromGitHub {
owner = "pomerium";
repo = "pomerium";
rev = "v${version}";
2022-09-13 07:39:15 +00:00
sha256 = "sha256-+YcYrhUQMiLUcBnYhTHxf+NrmQIdYpeO/blMgU33w6o=";
};
2022-09-13 07:39:15 +00:00
vendorSha256 = "sha256-Y8RFMW9nfO6cMCw1SDowKkpPHfUwGhzLPXr7vM6y6Nw=";
ui = mkYarnPackage {
inherit version;
src = "${src}/ui";
# update pomerium-ui-package.json when updating package, sourced from ui/package.json
packageJSON = ./pomerium-ui-package.json;
offlineCache = fetchYarnDeps {
yarnLock = "${src}/ui/yarn.lock";
sha256 = "sha256:1n6swanrds9hbd4yyfjzpnfhsb8fzj1pwvvcg3w7b1cgnihclrmv";
};
buildPhase = ''
runHook preBuild
yarn --offline build
runHook postbuild
'';
installPhase = ''
runHook preInstall
cp -R deps/pomerium/dist $out
runHook postInstall
'';
doDist = false;
};
2021-01-08 01:58:22 +00:00
subPackages = [
"cmd/pomerium"
];
2022-08-24 01:08:34 +00:00
# patch pomerium to allow use of external envoy
patches = [ ./external-envoy.diff ];
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";
};
2022-08-24 01:08:34 +00:00
"github.com/pomerium/pomerium/pkg/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.
2022-08-24 01:08:34 +00:00
rm pkg/envoy/files/files_{darwin,linux}*.go
cat <<EOF >pkg/envoy/files/files_external.go
2021-09-18 02:57:32 +00:00
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
2022-08-24 01:08:34 +00:00
sha256sum '${envoy}/bin/envoy' > pkg/envoy/files/envoy.sha256
echo '${envoy.version}' > pkg/envoy/files/envoy.version
2022-08-24 01:03:27 +00:00
# put the built UI files where they will be picked up as part of binary build
cp -r ${ui}/* ui/dist
2021-01-08 01:58:22 +00:00
'';
installPhase = ''
install -Dm0755 $GOPATH/bin/pomerium $out/bin/pomerium
'';
passthru.tests = {
inherit (nixosTests) pomerium;
2022-03-11 14:01:27 +00:00
inherit pomerium-cli;
};
meta = with lib; {
homepage = "https://pomerium.io";
description = "Authenticating reverse proxy";
license = licenses.asl20;
maintainers = with maintainers; [ lukegb ];
platforms = [ "x86_64-linux" "aarch64-linux" ];
};
2021-01-08 01:58:22 +00:00
}