nixpkgs/pkgs/servers/teleport/default.nix

73 lines
1.9 KiB
Nix
Raw Normal View History

2021-08-13 12:21:05 +00:00
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, xdg-utils }:
2021-01-26 19:37:15 +00:00
let
webassets = fetchFromGitHub {
owner = "gravitational";
repo = "webassets";
2021-09-29 15:47:33 +00:00
rev = "07493a5e78677de448b0e35bd72bf1dc6498b5ea";
sha256 = "sha256-V1vGGC8Q257iQMhxCBEBkZntt0ckppCJMCEr2Nqxo/M=";
2021-01-26 19:37:15 +00:00
};
in
2021-04-22 15:32:55 +00:00
buildGoModule rec {
pname = "teleport";
2021-10-28 12:14:28 +00:00
version = "7.3.2";
2018-01-14 08:04:08 +00:00
# This repo has a private submodule "e" which fetchgit cannot handle without failing.
src = fetchFromGitHub {
owner = "gravitational";
repo = "teleport";
rev = "v${version}";
2021-10-28 12:14:28 +00:00
sha256 = "sha256-ZigVfz4P5bVn+5qApmLGlNmzU52ncFjkSbwbPOKI4MA=";
};
2021-04-22 15:32:55 +00:00
vendorSha256 = null;
2020-03-18 10:43:09 +00:00
2018-01-14 08:04:08 +00:00
subPackages = [ "tool/tctl" "tool/teleport" "tool/tsh" ];
2021-08-11 12:58:40 +00:00
tags = [ "webassets_embed" ];
2020-03-18 10:43:09 +00:00
2021-08-13 12:21:05 +00:00
nativeBuildInputs = [ makeWrapper ];
2020-03-18 10:43:09 +00:00
patches = [
# https://github.com/NixOS/nixpkgs/issues/120738
./tsh.patch
# https://github.com/NixOS/nixpkgs/issues/132652
./test.patch
];
2021-08-11 12:58:40 +00:00
# Reduce closure size for client machines
outputs = [ "out" "client" ];
preBuild = ''
2018-01-14 08:04:08 +00:00
mkdir -p build
echo "making webassets"
2021-01-26 19:37:15 +00:00
cp -r ${webassets}/* webassets/
2021-08-13 12:21:05 +00:00
make lib/web/build/webassets
2020-03-18 10:43:09 +00:00
'';
2018-01-14 08:04:08 +00:00
2021-04-22 15:32:55 +00:00
preCheck = ''
export HOME=$(mktemp -d)
'';
postInstall = ''
install -Dm755 -t $client/bin $out/bin/tsh
2021-04-26 12:37:54 +00:00
wrapProgram $client/bin/tsh --prefix PATH : ${lib.makeBinPath [ xdg-utils ]}
wrapProgram $out/bin/tsh --prefix PATH : ${lib.makeBinPath [ xdg-utils ]}
'';
2018-01-14 08:04:08 +00:00
2021-02-01 14:45:17 +00:00
doInstallCheck = true;
installCheckPhase = ''
$out/bin/tsh version | grep ${version} > /dev/null
$client/bin/tsh version | grep ${version} > /dev/null
2021-02-01 14:45:17 +00:00
$out/bin/tctl version | grep ${version} > /dev/null
$out/bin/teleport version | grep ${version} > /dev/null
'';
meta = with lib; {
2018-01-14 08:04:08 +00:00
description = "A SSH CA management suite";
2021-04-22 15:32:55 +00:00
homepage = "https://goteleport.com/";
license = licenses.asl20;
maintainers = with maintainers; [ sigma tomberek freezeboy ];
platforms = platforms.unix;
2018-01-14 08:04:08 +00:00
};
}