Merge pull request #110878 from ymatsiuk/bumpteleport
teleport: 4.2.11 -> 5.1.0
This commit is contained in:
commit
22d282d4b3
1 changed files with 11 additions and 2 deletions
|
@ -1,16 +1,24 @@
|
||||||
# This file was generated by https://github.com/kamilchm/go2nix v2.0-dev
|
# This file was generated by https://github.com/kamilchm/go2nix v2.0-dev
|
||||||
{ lib, buildGoPackage, zip, fetchFromGitHub }:
|
{ lib, buildGoPackage, zip, fetchFromGitHub }:
|
||||||
|
let
|
||||||
|
webassets = fetchFromGitHub {
|
||||||
|
owner = "gravitational";
|
||||||
|
repo = "webassets";
|
||||||
|
rev = "eb98cd28e34144c6473b79743066d1c63c6427ab";
|
||||||
|
sha256 = "001a3bx8yyx1hq8y5yiy1jzp122q8gcl369lj0609gaxp6dk5bdw";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
pname = "teleport";
|
pname = "teleport";
|
||||||
version = "4.2.11";
|
version = "5.1.0";
|
||||||
|
|
||||||
# This repo has a private submodule "e" which fetchgit cannot handle without failing.
|
# This repo has a private submodule "e" which fetchgit cannot handle without failing.
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "gravitational";
|
owner = "gravitational";
|
||||||
repo = "teleport";
|
repo = "teleport";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "00mkh6rmdgwwhbk3jmxgwl0aisnnqw6q6i5zl1hn69hvdny9liii";
|
sha256 = "0jkr4max6mcn8k5nhlg71byb0yzr9kplpl1q96pdk2gbvkh7q6xb";
|
||||||
};
|
};
|
||||||
|
|
||||||
goPackagePath = "github.com/gravitational/teleport";
|
goPackagePath = "github.com/gravitational/teleport";
|
||||||
|
@ -24,6 +32,7 @@ buildGoPackage rec {
|
||||||
cd $NIX_BUILD_TOP/go/src/github.com/gravitational/teleport
|
cd $NIX_BUILD_TOP/go/src/github.com/gravitational/teleport
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
echo "making webassets"
|
echo "making webassets"
|
||||||
|
cp -r ${webassets}/* webassets/
|
||||||
make build/webassets.zip
|
make build/webassets.zip
|
||||||
cat build/webassets.zip >> $NIX_BUILD_TOP/go/bin/teleport
|
cat build/webassets.zip >> $NIX_BUILD_TOP/go/bin/teleport
|
||||||
rm -fr build/webassets.zip
|
rm -fr build/webassets.zip
|
||||||
|
|
Loading…
Reference in a new issue