2021-11-08 21:43:52 +00:00
|
|
|
{ lib
|
2022-02-04 12:16:47 +00:00
|
|
|
, buildGoModule
|
2021-11-08 21:43:52 +00:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, makeWrapper
|
|
|
|
, protobuf
|
|
|
|
, stdenv
|
|
|
|
, xdg-utils
|
2022-01-08 08:29:19 +00:00
|
|
|
, nixosTests
|
2018-01-14 08:04:08 +00:00
|
|
|
|
2021-11-08 21:43:52 +00:00
|
|
|
, withRoleTester ? true
|
|
|
|
}:
|
|
|
|
let
|
2018-02-01 10:27:07 +00:00
|
|
|
# This repo has a private submodule "e" which fetchgit cannot handle without failing.
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gravitational";
|
|
|
|
repo = "teleport";
|
|
|
|
rev = "v${version}";
|
2022-02-04 15:56:42 +00:00
|
|
|
sha256 = "sha256-ir2NMNIjSpv7l6dVNHczARg6b+doFofinsJy1smEC7o=";
|
2021-11-08 21:43:52 +00:00
|
|
|
};
|
2022-02-04 15:56:42 +00:00
|
|
|
version = "8.1.3";
|
2021-11-08 21:43:52 +00:00
|
|
|
|
|
|
|
roleTester = rustPlatform.buildRustPackage {
|
|
|
|
name = "teleport-roletester";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = "${src}/lib/datalog";
|
|
|
|
cargoSha256 = "sha256-cpW7kel02t/fB2CvDvVqWlzgS3Vg2qLnemF/bW2Ii1A=";
|
|
|
|
sourceRoot = "datalog/roletester";
|
|
|
|
|
|
|
|
PROTOC = "${protobuf}/bin/protoc";
|
|
|
|
PROTOC_INCLUDE = "${protobuf}/include";
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
cp -r target $out
|
|
|
|
'';
|
2018-02-01 10:27:07 +00:00
|
|
|
};
|
|
|
|
|
2021-11-08 21:43:52 +00:00
|
|
|
webassets = fetchFromGitHub {
|
|
|
|
owner = "gravitational";
|
|
|
|
repo = "webassets";
|
2022-02-04 15:56:42 +00:00
|
|
|
rev = "ea3c67c941c56cfb6c228612e88100df09fb6f9c";
|
|
|
|
sha256 = "sha256-oKvDXkxA73IJOi+ciBFVLkYcmeRUsTC+3rcYf64vDoY=";
|
2021-11-08 21:43:52 +00:00
|
|
|
};
|
|
|
|
in
|
2022-02-04 12:16:47 +00:00
|
|
|
buildGoModule rec {
|
2021-11-08 21:43:52 +00:00
|
|
|
pname = "teleport";
|
|
|
|
|
|
|
|
inherit src version;
|
2021-04-22 16:32:55 +01: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-11-08 21:43:52 +00:00
|
|
|
tags = [ "webassets_embed" ] ++
|
|
|
|
lib.optional withRoleTester "roletester";
|
2020-03-18 10:43:09 +00:00
|
|
|
|
2021-08-13 13:21:05 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2020-03-18 10:43:09 +00:00
|
|
|
|
2021-08-04 13:00:16 +01:00
|
|
|
patches = [
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/120738
|
|
|
|
./tsh.patch
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/132652
|
|
|
|
./test.patch
|
|
|
|
];
|
2021-04-26 13:45:28 +01:00
|
|
|
|
2021-08-11 13:58:40 +01: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 13:21:05 +01:00
|
|
|
make lib/web/build/webassets
|
2021-11-08 21:43:52 +00:00
|
|
|
|
|
|
|
${lib.optionalString withRoleTester
|
|
|
|
"cp -r ${roleTester}/target lib/datalog/roletester/."}
|
2020-03-18 10:43:09 +00:00
|
|
|
'';
|
2018-01-14 08:04:08 +00:00
|
|
|
|
2021-11-08 21:43:52 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2021-04-22 16:32:55 +01:00
|
|
|
preCheck = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
'';
|
|
|
|
|
2021-01-05 12:50:58 +00:00
|
|
|
postInstall = ''
|
|
|
|
install -Dm755 -t $client/bin $out/bin/tsh
|
2021-04-26 13:37:54 +01:00
|
|
|
wrapProgram $client/bin/tsh --prefix PATH : ${lib.makeBinPath [ xdg-utils ]}
|
|
|
|
wrapProgram $out/bin/tsh --prefix PATH : ${lib.makeBinPath [ xdg-utils ]}
|
2021-01-05 12:50:58 +00:00
|
|
|
'';
|
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
|
2021-01-05 12:50:58 +00:00
|
|
|
$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
|
|
|
|
'';
|
|
|
|
|
2022-01-08 08:29:19 +00:00
|
|
|
passthru.tests = nixosTests.teleport;
|
|
|
|
|
2021-01-05 12:50:58 +00:00
|
|
|
meta = with lib; {
|
2021-11-08 21:43:52 +00:00
|
|
|
description = "Certificate authority and access plane for SSH, Kubernetes, web applications, and databases";
|
2021-04-22 16:32:55 +01:00
|
|
|
homepage = "https://goteleport.com/";
|
2021-01-05 12:50:58 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ sigma tomberek freezeboy ];
|
|
|
|
platforms = platforms.unix;
|
2018-01-14 08:04:08 +00:00
|
|
|
};
|
|
|
|
}
|