mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 10:53:52 +00:00
teleport: init at v2.4.0
This commit is contained in:
parent
08492b31d1
commit
256d147931
40
pkgs/servers/teleport/default.nix
Normal file
40
pkgs/servers/teleport/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
# This file was generated by https://github.com/kamilchm/go2nix v2.0-dev
|
||||
{ stdenv, buildGoPackage, zip, fetchurl }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "teleport-${version}";
|
||||
version = "2.4.0";
|
||||
|
||||
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;
|
||||
|
||||
# This repo has a private submodule "e" which fetchgit cannot handle
|
||||
# without failing. Using fetchurl instead on the latest tagged release.
|
||||
src = fetchurl {
|
||||
url = "https://github.com/gravitational/teleport/archive/v2.4.0.tar.gz";
|
||||
sha256 = "01qcr6vml3ias3gbkqjnb5fmc6ap1fd5mi52ygn3agafy63jb5rd";
|
||||
};
|
||||
|
||||
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.linux;
|
||||
};
|
||||
}
|
@ -4783,6 +4783,8 @@ with pkgs;
|
||||
|
||||
telegraf = callPackage ../servers/monitoring/telegraf { };
|
||||
|
||||
teleport = callPackage ../servers/teleport {};
|
||||
|
||||
telepresence = callPackage ../tools/networking/telepresence { };
|
||||
|
||||
texmacs = callPackage ../applications/editors/texmacs {
|
||||
|
Loading…
Reference in New Issue
Block a user