teleport: 5.1.0 -> 5.1.2

wip/yesman
Yurii Matsiuk 3 years ago
parent 26187c65b6
commit 7681353213
No known key found for this signature in database
GPG Key ID: 61302290298601AA
  1. 14
      pkgs/servers/teleport/default.nix

@ -4,21 +4,21 @@ let
webassets = fetchFromGitHub {
owner = "gravitational";
repo = "webassets";
rev = "eb98cd28e34144c6473b79743066d1c63c6427ab";
rev = "2d79788dbcd005bdcfe5b5120007d0faf8f1fc82";
sha256 = "001a3bx8yyx1hq8y5yiy1jzp122q8gcl369lj0609gaxp6dk5bdw";
};
in
buildGoPackage rec {
pname = "teleport";
version = "5.1.0";
version = "5.1.2";
# This repo has a private submodule "e" which fetchgit cannot handle without failing.
src = fetchFromGitHub {
owner = "gravitational";
repo = "teleport";
rev = "v${version}";
sha256 = "0jkr4max6mcn8k5nhlg71byb0yzr9kplpl1q96pdk2gbvkh7q6xb";
sha256 = "0h1hn2dpdsmhxac06gn6787z2mnfcwb3wn0c2l7l2qhw6iqpgmvh";
};
goPackagePath = "github.com/gravitational/teleport";
@ -43,6 +43,14 @@ buildGoPackage rec {
dontStrip = true;
doInstallCheck = true;
installCheckPhase = ''
$out/bin/tsh version | grep ${version} > /dev/null
$out/bin/tctl version | grep ${version} > /dev/null
$out/bin/teleport version | grep ${version} > /dev/null
'';
meta = {
description = "A SSH CA management suite";
homepage = "https://gravitational.com/teleport/";

Loading…
Cancel
Save