nixpkgs/pkgs/servers/teleport/default.nix

45 lines
1.2 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
2021-01-15 07:07:56 +00:00
{ lib, stdenv, buildGoPackage, zip, fetchFromGitHub }:
2018-01-14 08:04:08 +00:00
buildGoPackage rec {
pname = "teleport";
2020-07-02 20:06:12 +00:00
version = "4.2.11";
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}";
2020-07-02 20:06:12 +00:00
sha256 = "00mkh6rmdgwwhbk3jmxgwl0aisnnqw6q6i5zl1hn69hvdny9liii";
};
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"
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
dontStrip = true;
meta = {
description = "A SSH CA management suite";
homepage = "https://gravitational.com/teleport/";
2021-01-15 07:07:56 +00:00
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ sigma tomberek ];
platforms = lib.platforms.unix;
2018-01-14 08:04:08 +00:00
};
}