summary refs log tree commit diff
path: root/pkgs/servers/teleport
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-27 17:15:21 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-02-27 17:15:21 -0800
commit0320175adef633f2bc9634ac34f5c598571c5b0f (patch)
tree2685028171d2582a3f81151681ba66568fc9a171 /pkgs/servers/teleport
parent6a101342051182e66587249cfd8c4800b0746c82 (diff)
downloadnixpkgs-0320175adef633f2bc9634ac34f5c598571c5b0f.tar
nixpkgs-0320175adef633f2bc9634ac34f5c598571c5b0f.tar.gz
nixpkgs-0320175adef633f2bc9634ac34f5c598571c5b0f.tar.bz2
nixpkgs-0320175adef633f2bc9634ac34f5c598571c5b0f.tar.lz
nixpkgs-0320175adef633f2bc9634ac34f5c598571c5b0f.tar.xz
nixpkgs-0320175adef633f2bc9634ac34f5c598571c5b0f.tar.zst
nixpkgs-0320175adef633f2bc9634ac34f5c598571c5b0f.zip
teleport: 2.4.0 -> 2.4.1
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/kp6byd77bjr0k67js1z2a24p8kb81ddb-teleport-2.4.1-bin/bin/tsh help` got 0 exit code
- ran `/nix/store/kp6byd77bjr0k67js1z2a24p8kb81ddb-teleport-2.4.1-bin/bin/tsh version` and found version 2.4.1
- ran `/nix/store/kp6byd77bjr0k67js1z2a24p8kb81ddb-teleport-2.4.1-bin/bin/tctl help` got 0 exit code
- ran `/nix/store/kp6byd77bjr0k67js1z2a24p8kb81ddb-teleport-2.4.1-bin/bin/tctl version` and found version 2.4.1
- ran `/nix/store/kp6byd77bjr0k67js1z2a24p8kb81ddb-teleport-2.4.1-bin/bin/teleport help` got 0 exit code
- ran `/nix/store/kp6byd77bjr0k67js1z2a24p8kb81ddb-teleport-2.4.1-bin/bin/teleport version` and found version 2.4.1
- found 2.4.1 with grep in /nix/store/kp6byd77bjr0k67js1z2a24p8kb81ddb-teleport-2.4.1-bin
- found 2.4.1 in filename of file in /nix/store/kp6byd77bjr0k67js1z2a24p8kb81ddb-teleport-2.4.1-bin

cc "@tomberek @ehmry @lethalman"
Diffstat (limited to 'pkgs/servers/teleport')
-rw-r--r--pkgs/servers/teleport/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/teleport/default.nix b/pkgs/servers/teleport/default.nix
index 0c6a197b1da..0f08d94a052 100644
--- a/pkgs/servers/teleport/default.nix
+++ b/pkgs/servers/teleport/default.nix
@@ -3,14 +3,14 @@
 
 buildGoPackage rec {
   name = "teleport-${version}";
-  version = "2.4.0";
+  version = "2.4.1";
 
   # This repo has a private submodule "e" which fetchgit cannot handle without failing.
   src = fetchFromGitHub {
     owner = "gravitational";
     repo = "teleport";
     rev = "v${version}";
-    sha256 = "1x4xnqjyb87pzmn2c59fwmzfx1f2k0xhqn2xgki3722qmj2ss846";
+    sha256 = "09kmlihv4aqc39f9cyv2vm0kqgdf9vmdrgds5krnzqdgy3svyg7y";
   };
 
   goPackagePath = "github.com/gravitational/teleport";