42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
# This file was generated by https://github.com/kamilchm/go2nix v2.0-dev
|
|
{ stdenv, buildGoPackage, zip, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "teleport-${version}";
|
|
version = "4.0.2";
|
|
|
|
# This repo has a private submodule "e" which fetchgit cannot handle without failing.
|
|
src = fetchFromGitHub {
|
|
owner = "gravitational";
|
|
repo = "teleport";
|
|
rev = "v${version}";
|
|
sha256 = "0rnjw297pkkhpqisrs5ghgvzlklk7kbhrz7rhr91b5rx3lr9c1ny";
|
|
};
|
|
|
|
goPackagePath = "github.com/gravitational/teleport";
|
|
subPackages = [ "tool/tctl" "tool/teleport" "tool/tsh" ];
|
|
buildInputs = [ zip ];
|
|
postBuild = ''
|
|
pushd .
|
|
cd $NIX_BUILD_TOP/go/src/github.com/gravitational/teleport
|
|
mkdir -p build
|
|
echo "making webassets"
|
|
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
|
|
'';
|
|
|
|
dontStrip = true;
|
|
|
|
meta = {
|
|
description = "A SSH CA management suite";
|
|
homepage = "https://gravitational.com/teleport/";
|
|
license = stdenv.lib.licenses.asl20;
|
|
maintainers = [ stdenv.lib.maintainers.tomberek ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|