nixpkgs/pkgs/servers/teleport/default.nix

70 lines
1.9 KiB
Nix
Raw Normal View History

2018-01-14 08:04:08 +00:00
# This file was generated by https://github.com/kamilchm/go2nix v2.0-dev
{ lib, buildGoPackage, zip, fetchFromGitHub }:
2021-01-26 19:37:15 +00:00
let
webassets = fetchFromGitHub {
owner = "gravitational";
repo = "webassets";
2021-02-01 14:45:17 +00:00
rev = "2d79788dbcd005bdcfe5b5120007d0faf8f1fc82";
2021-01-26 19:37:15 +00:00
sha256 = "001a3bx8yyx1hq8y5yiy1jzp122q8gcl369lj0609gaxp6dk5bdw";
};
in
2018-01-14 08:04:08 +00:00
buildGoPackage rec {
pname = "teleport";
2021-02-01 14:45:17 +00:00
version = "5.1.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-02-01 14:45:17 +00:00
sha256 = "0h1hn2dpdsmhxac06gn6787z2mnfcwb3wn0c2l7l2qhw6iqpgmvh";
};
2018-01-14 08:04:08 +00:00
goPackagePath = "github.com/gravitational/teleport";
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
nativeBuildInputs = [ zip ];
2018-01-14 08:04:08 +00:00
postBuild = ''
pushd .
cd $NIX_BUILD_TOP/go/src/github.com/gravitational/teleport
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
# Reduce closure size for client machines
outputs = [ "out" "client" ];
buildTargets = [ "full" ];
postInstall = ''
install -Dm755 -t $client/bin $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
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";
homepage = "https://gravitational.com/teleport/";
license = licenses.asl20;
maintainers = with maintainers; [ sigma tomberek freezeboy ];
platforms = platforms.unix;
2018-01-14 08:04:08 +00:00
};
}