1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00
nixpkgs/pkgs/servers/http/pomerium/default.nix

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

129 lines
3 KiB
Nix
Raw Normal View History

2021-01-08 01:58:22 +00:00
{ buildGoModule
, fetchFromGitHub
2022-08-24 02:03:27 +01: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";
2023-05-29 09:39:07 +01:00
version = "0.22.2";
src = fetchFromGitHub {
owner = "pomerium";
repo = "pomerium";
rev = "v${version}";
2023-05-29 09:39:07 +01:00
sha256 = "sha256-EcAzj2VLbBPu5afKZcf2fGBbw2kTOYGgSemD70msrqw=";
};
vendorHash = "sha256-xe8as7OY1+tTSqgpwk2Q1jcBnn89latJpMyx4KG7zg8=";
ui = mkYarnPackage {
inherit version;
src = "${src}/ui";
2023-03-18 11:49:29 +00:00
packageJSON = ./package.json;
offlineCache = fetchYarnDeps {
yarnLock = "${src}/ui/yarn.lock";
2023-03-18 11:49:29 +00:00
sha256 = lib.fileContents ./yarn-hash;
};
buildPhase = ''
runHook preBuild
yarn --offline build
2023-05-24 17:21:51 +01:00
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 02:08:34 +01:00
# patch pomerium to allow use of external envoy
patches = [ ./external-envoy.diff ];
2021-08-26 07:45:51 +01: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 02:08:34 +01: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 07:45:51 +01:00
"${varFlags}"
2021-01-08 01:58:22 +00:00
];
2021-09-18 03:57:32 +01: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 02:08:34 +01:00
rm pkg/envoy/files/files_{darwin,linux}*.go
cat <<EOF >pkg/envoy/files/files_external.go
2021-09-18 03:57:32 +01:00
package files
import _ "embed" // embed
var rawBinary []byte
2021-01-08 01:58:22 +00:00
2021-09-18 03:57:32 +01:00
//go:embed envoy.sha256
var rawChecksum string
2021-01-08 01:58:22 +00:00
2021-09-18 03:57:32 +01:00
//go:embed envoy.version
var rawVersion string
EOF
2022-08-24 02:08:34 +01:00
sha256sum '${envoy}/bin/envoy' > pkg/envoy/files/envoy.sha256
echo '${envoy.version}' > pkg/envoy/files/envoy.version
2022-08-24 02:03:27 +01: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
'';
2023-03-18 11:48:41 +00:00
passthru = {
tests = {
inherit (nixosTests) pomerium;
inherit pomerium-cli;
};
updateScript = ./updater.sh;
};
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
}