nixpkgs/pkgs/servers/teleport/default.nix

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

128 lines
3.5 KiB
Nix
Raw Normal View History

2021-11-08 21:43:52 +00:00
{ lib
, buildGoModule
2021-11-08 21:43:52 +00:00
, rustPlatform
, fetchFromGitHub
, makeWrapper
2022-04-25 16:30:13 +00:00
, symlinkJoin
, CoreFoundation
, libfido2
2022-04-25 16:30:13 +00:00
, openssl
, pkg-config
2021-11-08 21:43:52 +00:00
, protobuf
2022-04-25 16:30:13 +00:00
, Security
2021-11-08 21:43:52 +00:00
, stdenv
, xdg-utils
2022-01-08 08:29:19 +00:00
, nixosTests
2018-01-14 08:04:08 +00:00
2022-04-25 16:30:13 +00:00
, withRdpClient ? true
2021-11-08 21:43:52 +00:00
}:
let
# This repo has a private submodule "e" which fetchgit cannot handle without failing.
src = fetchFromGitHub {
owner = "gravitational";
repo = "teleport";
rev = "v${version}";
hash = "sha256-F5v3/eKPLhSxW7FImTbE+QMtfn8w5WVTrxMWhgNr3YA=";
2021-11-08 21:43:52 +00:00
};
version = "10.3.1";
2021-11-08 21:43:52 +00:00
2022-04-25 16:30:13 +00:00
rdpClient = rustPlatform.buildRustPackage rec {
pname = "teleport-rdpclient";
cargoHash = "sha256-Xmabjoq1NXxXemeR06Gg8R/HwdSE+rsxxX645pQ3SuI=";
2022-04-25 16:30:13 +00:00
inherit version src;
buildAndTestSubdir = "lib/srv/desktop/rdp/rdpclient";
buildInputs = [ openssl ]
++ lib.optionals stdenv.isDarwin [ CoreFoundation Security ];
nativeBuildInputs = [ pkg-config ];
# https://github.com/NixOS/nixpkgs/issues/161570 ,
# buildRustPackage sets strictDeps = true;
checkInputs = buildInputs;
OPENSSL_NO_VENDOR = "1";
postInstall = ''
mkdir -p $out/include
cp ${buildAndTestSubdir}/librdprs.h $out/include/
2021-11-08 21:43:52 +00:00
'';
};
2021-11-08 21:43:52 +00:00
webassets = fetchFromGitHub {
owner = "gravitational";
repo = "webassets";
# Submodule rev from https://github.com/gravitational/teleport/tree/v10.3.1
rev = "6710dcd0dc19ad101bac3259c463ef940f2ab1f3";
hash = "sha256-A13FSpgJODmhugAwy4kqiDw4Rihr//DhQX/bjwaeo2A=";
2021-11-08 21:43:52 +00:00
};
in
buildGoModule rec {
2021-11-08 21:43:52 +00:00
pname = "teleport";
inherit src version;
vendorHash = "sha256-2Zrd3CbZvxns9lNVtwaaor1mi97IhPc+MRJhj3rU760=";
2020-03-18 10:43:09 +00:00
2022-04-25 16:06:27 +00:00
subPackages = [ "tool/tbot" "tool/tctl" "tool/teleport" "tool/tsh" ];
tags = [ "libfido2" "webassets_embed" ]
++ lib.optional withRdpClient "desktop_access_rdp";
2020-03-18 10:43:09 +00:00
buildInputs = [ openssl libfido2 ]
2022-04-25 16:30:13 +00:00
++ lib.optionals (stdenv.isDarwin && withRdpClient) [ CoreFoundation Security ];
nativeBuildInputs = [ makeWrapper pkg-config ];
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
./0001-fix-add-nix-path-to-exec-env.patch
2022-04-25 16:30:13 +00:00
./rdpclient.patch
];
2021-08-11 12:58:40 +00:00
# Reduce closure size for client machines
outputs = [ "out" "client" ];
preBuild = ''
mkdir -p build
echo "making webassets"
cp -r ${webassets}/* webassets/
make -j$NIX_BUILD_CORES lib/web/build/webassets
'' + lib.optionalString withRdpClient ''
ln -s ${rdpClient}/lib/* lib/
ln -s ${rdpClient}/include/* lib/srv/desktop/rdp/rdpclient/
'';
2018-01-14 08:04:08 +00:00
2022-04-25 16:06:27 +00:00
# Multiple tests fail in the build sandbox
# due to trying to spawn nixbld's shell (/noshell), etc.
doCheck = false;
2021-04-22 15:32:55 +00:00
postInstall = ''
mkdir -p $client/bin
mv {$out,$client}/bin/tsh
# make xdg-open overrideable at runtime
wrapProgram $client/bin/tsh --suffix PATH : ${lib.makeBinPath [ xdg-utils ]}
ln -s {$client,$out}/bin/tsh
'';
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
2022-04-25 16:06:27 +00:00
$out/bin/tbot 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;
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 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
};
}