2018-01-14 09:04:08 +01:00
|
|
|
# This file was generated by https://github.com/kamilchm/go2nix v2.0-dev
|
2021-04-22 17:32:55 +02:00
|
|
|
{ lib, buildGoModule, zip, fetchFromGitHub, makeWrapper, xdg-utils }:
|
2021-01-26 20:37:15 +01:00
|
|
|
let
|
|
|
|
webassets = fetchFromGitHub {
|
|
|
|
owner = "gravitational";
|
|
|
|
repo = "webassets";
|
2021-06-21 20:29:43 +02:00
|
|
|
rev = "8a30ee4e3570c7db0566028b6b562167aa40f646";
|
|
|
|
sha256 = "sha256-noMVcB1cjiMcRke6/qJIzDaEh4uPIewsedLQRdPbzIQ=";
|
2021-01-26 20:37:15 +01:00
|
|
|
};
|
|
|
|
in
|
2018-01-14 09:04:08 +01:00
|
|
|
|
2021-04-22 17:32:55 +02:00
|
|
|
buildGoModule rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "teleport";
|
2021-07-04 00:28:31 +02:00
|
|
|
version = "6.2.7";
|
2018-01-14 09:04:08 +01:00
|
|
|
|
2018-02-01 11:27:07 +01:00
|
|
|
# This repo has a private submodule "e" which fetchgit cannot handle without failing.
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gravitational";
|
|
|
|
repo = "teleport";
|
|
|
|
rev = "v${version}";
|
2021-07-04 00:28:31 +02:00
|
|
|
sha256 = "0ychs2pqi3awbr0vraz0ksddwk5hihrd1d9raq8mxyw5dz5124ki";
|
2018-02-01 11:27:07 +01:00
|
|
|
};
|
|
|
|
|
2021-04-22 17:32:55 +02:00
|
|
|
vendorSha256 = null;
|
2020-03-18 11:43:09 +01:00
|
|
|
|
2018-01-14 09:04:08 +01:00
|
|
|
subPackages = [ "tool/tctl" "tool/teleport" "tool/tsh" ];
|
2020-03-18 11:43:09 +01:00
|
|
|
|
2021-04-08 12:12:59 +02:00
|
|
|
nativeBuildInputs = [ zip makeWrapper ];
|
2020-03-18 11:43:09 +01:00
|
|
|
|
2021-04-26 14:45:28 +02:00
|
|
|
# https://github.com/NixOS/nixpkgs/issues/120738
|
|
|
|
patches = [ ./tsh.patch ];
|
|
|
|
|
2018-01-14 09:04:08 +01:00
|
|
|
postBuild = ''
|
|
|
|
pushd .
|
|
|
|
mkdir -p build
|
|
|
|
echo "making webassets"
|
2021-01-26 20:37:15 +01:00
|
|
|
cp -r ${webassets}/* webassets/
|
2018-01-14 09:04:08 +01:00
|
|
|
make build/webassets.zip
|
|
|
|
cat build/webassets.zip >> $NIX_BUILD_TOP/go/bin/teleport
|
|
|
|
rm -fr build/webassets.zip
|
|
|
|
cd $NIX_BUILD_TOP/go/bin
|
|
|
|
zip -q -A teleport
|
|
|
|
popd
|
2020-03-18 11:43:09 +01:00
|
|
|
'';
|
2018-01-14 09:04:08 +01:00
|
|
|
|
2021-04-22 17:32:55 +02:00
|
|
|
# Do not strip the embedded web assets
|
|
|
|
dontStrip = true;
|
|
|
|
|
2021-01-05 13:50:58 +01:00
|
|
|
# Reduce closure size for client machines
|
|
|
|
outputs = [ "out" "client" ];
|
|
|
|
|
|
|
|
buildTargets = [ "full" ];
|
|
|
|
|
2021-04-22 17:32:55 +02:00
|
|
|
preCheck = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
'';
|
|
|
|
|
2021-01-05 13:50:58 +01:00
|
|
|
postInstall = ''
|
|
|
|
install -Dm755 -t $client/bin $out/bin/tsh
|
2021-04-26 14:37:54 +02:00
|
|
|
wrapProgram $client/bin/tsh --prefix PATH : ${lib.makeBinPath [ xdg-utils ]}
|
|
|
|
wrapProgram $out/bin/tsh --prefix PATH : ${lib.makeBinPath [ xdg-utils ]}
|
2021-01-05 13:50:58 +01:00
|
|
|
'';
|
2018-01-14 09:04:08 +01:00
|
|
|
|
2021-02-01 15:45:17 +01:00
|
|
|
doInstallCheck = true;
|
|
|
|
|
|
|
|
installCheckPhase = ''
|
|
|
|
$out/bin/tsh version | grep ${version} > /dev/null
|
2021-01-05 13:50:58 +01:00
|
|
|
$client/bin/tsh version | grep ${version} > /dev/null
|
2021-02-01 15:45:17 +01:00
|
|
|
$out/bin/tctl version | grep ${version} > /dev/null
|
|
|
|
$out/bin/teleport version | grep ${version} > /dev/null
|
|
|
|
'';
|
|
|
|
|
2021-01-05 13:50:58 +01:00
|
|
|
meta = with lib; {
|
2018-01-14 09:04:08 +01:00
|
|
|
description = "A SSH CA management suite";
|
2021-04-22 17:32:55 +02:00
|
|
|
homepage = "https://goteleport.com/";
|
2021-01-05 13:50:58 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ sigma tomberek freezeboy ];
|
|
|
|
platforms = platforms.unix;
|
2018-01-14 09:04:08 +01:00
|
|
|
};
|
|
|
|
}
|