nixpkgs/pkgs/tools/security/pomerium-cli/default.nix

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

65 lines
1.5 KiB
Nix
Raw Normal View History

2022-03-11 15:01:27 +01:00
{ buildGoModule
, fetchFromGitHub
, lib
, pomerium
}:
let
inherit (lib) concatStringsSep concatMap id mapAttrsToList;
in
buildGoModule rec {
pname = "pomerium-cli";
2022-06-03 02:54:33 +02:00
inherit (pomerium) version;
2022-03-11 15:01:27 +01:00
src = fetchFromGitHub {
owner = "pomerium";
repo = "cli";
rev = "v${version}";
2022-06-03 02:54:33 +02:00
hash = "sha256-AZeBtHy2MEPE8uZVJv4wLdOt6f9QNbaQnP5a2YVYYAg=";
2022-03-11 15:01:27 +01:00
};
2022-06-03 02:54:33 +02:00
vendorSha256 = "sha256-K0Vdsl6wD0eJeJRsUjiNPuGx1KPkZrlCCzdyAysVonc=";
2022-03-11 15:01:27 +01:00
subPackages = [
"cmd/pomerium-cli"
];
ldflags = let
# Set a variety of useful meta variables for stamping the build with.
setVars = {
"github.com/pomerium/cli/version" = {
Version = "v${version}";
BuildMeta = "nixpkgs";
ProjectName = "pomerium-cli";
ProjectURL = "github.com/pomerium/cli";
};
};
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);
in [
"${varFlags}"
];
installPhase = ''
2022-06-03 02:54:33 +02:00
runHook preInstall
2022-03-11 15:01:27 +01:00
install -Dm0755 $GOPATH/bin/pomerium-cli $out/bin/pomerium-cli
2022-06-03 02:54:33 +02:00
runHook postInstall
2022-03-11 15:01:27 +01:00
'';
meta = with lib; {
homepage = "https://pomerium.io";
description = "Client-side helper for Pomerium authenticating reverse proxy";
license = licenses.asl20;
maintainers = with maintainers; [ lukegb ];
platforms = platforms.unix;
};
}