Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 31600452bcdc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e2ac456f9a24
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 18, 2019

  1. teleport: 2.4.1 -> 3.1.8

    tomberek committed Mar 18, 2019
    Copy the full SHA
    0c60f56 View commit details

Commits on Mar 22, 2019

  1. Merge pull request #57864 from tomberek/teleport_update

    teleport: 2.4.1 -> 3.1.8
    worldofpeace authored Mar 22, 2019
    Copy the full SHA
    e2ac456 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/teleport/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/teleport/default.nix
Original file line number Diff line number Diff line change
@@ -3,14 +3,14 @@

buildGoPackage rec {
name = "teleport-${version}";
version = "2.4.1";
version = "3.1.8";

# This repo has a private submodule "e" which fetchgit cannot handle without failing.
src = fetchFromGitHub {
owner = "gravitational";
repo = "teleport";
rev = "v${version}";
sha256 = "09kmlihv4aqc39f9cyv2vm0kqgdf9vmdrgds5krnzqdgy3svyg7y";
sha256 = "1jkng8zr5x7z9np2wm9ya1j1zv7bhcv9qsmgmrlfy6y9ld3bq8r2";
};

goPackagePath = "github.com/gravitational/teleport";