nixpkgs/pkgs/servers/teleport/default.nix

85 lines
2.2 KiB
Nix
Raw Permalink Normal View History

2018-01-14 08:04:08 +00:00
# This file was generated by https://github.com/kamilchm/go2nix v2.0-dev
2021-04-22 15:32:55 +00:00
{ lib, buildGoModule, zip, fetchFromGitHub, makeWrapper, xdg-utils }:
2021-01-26 19:37:15 +00:00
let
webassets = fetchFromGitHub {
owner = "gravitational";
repo = "webassets";
rev = "c63397375632f1a4323918dde78334472f3ffbb9";
sha256 = "sha256-6YKk0G3s+35PRsUBkKgu/tNoSSwjJ5bTn8DACF4gYr4=";
2021-01-26 19:37:15 +00:00
};
in
2018-01-14 08:04:08 +00:00
2021-04-22 15:32:55 +00:00
buildGoModule rec {
pname = "teleport";
version = "6.2.8";
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}";
sha256 = "sha256-TVjdz97CUXBKCQh9bYrvtcH4StblBMsXiQ9Gix/NIm4=";
};
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" ];
2020-03-18 10:43:09 +00:00
2021-04-08 10:12:59 +00:00
nativeBuildInputs = [ zip 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
];
2018-01-14 08:04:08 +00:00
postBuild = ''
pushd .
mkdir -p build
echo "making webassets"
2021-01-26 19:37:15 +00:00
cp -r ${webassets}/* webassets/
2018-01-14 08:04:08 +00: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 10:43:09 +00:00
'';
2018-01-14 08:04:08 +00:00
2021-04-22 15:32:55 +00:00
# Do not strip the embedded web assets
dontStrip = true;
# Reduce closure size for client machines
outputs = [ "out" "client" ];
buildTargets = [ "full" ];
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
};
}