aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/servers/teleport
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/servers/teleport
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/servers/teleport')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/servers/teleport/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/servers/teleport/default.nix b/infra/libkookie/nixpkgs/pkgs/servers/teleport/default.nix
new file mode 100644
index 000000000000..b307f7861fa4
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/servers/teleport/default.nix
@@ -0,0 +1,44 @@
+# This file was generated by https://github.com/kamilchm/go2nix v2.0-dev
+{ stdenv, buildGoPackage, zip, fetchFromGitHub }:
+
+buildGoPackage rec {
+ pname = "teleport";
+ version = "4.2.11";
+
+ # This repo has a private submodule "e" which fetchgit cannot handle without failing.
+ src = fetchFromGitHub {
+ owner = "gravitational";
+ repo = "teleport";
+ rev = "v${version}";
+ sha256 = "00mkh6rmdgwwhbk3jmxgwl0aisnnqw6q6i5zl1hn69hvdny9liii";
+ };
+
+ goPackagePath = "github.com/gravitational/teleport";
+
+ subPackages = [ "tool/tctl" "tool/teleport" "tool/tsh" ];
+
+ nativeBuildInputs = [ 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 = with stdenv.lib.maintainers; [ sigma tomberek ];
+ platforms = stdenv.lib.platforms.unix;
+ };
+}