Merge branch 'staging-next' into staging

This commit is contained in:
WORLDofPEACE
2020-09-20 18:41:15 -04:00
394 changed files with 17279 additions and 6702 deletions
@@ -201,7 +201,11 @@ let
lab = callPackage ./lab { };
lefthook = callPackage ./lefthook { };
lefthook = callPackage ./lefthook {
# Please use empty attrset once upstream bugs have been fixed
# https://github.com/Arkweid/lefthook/issues/151
buildGoModule = buildGo114Module;
};
legit = callPackage ./legit { };
@@ -2,20 +2,21 @@
buildGoModule rec {
pname = "gh";
version = "0.12.0";
version = "1.0.0";
src = fetchFromGitHub {
owner = "cli";
repo = "cli";
rev = "v${version}";
sha256 = "1nwpqwr8sqqpndj7qsk935i1675f4qdbl31x60a038l9iiwc28x1";
sha256 = "10ixjrb56ddqxla7mfxqnf74zissjx66akcyvgl9xfmww0bvg64x";
};
vendorSha256 = "1m5ahzh5sfla3p6hllr7wjigvrnccdvrsdjpxd2hy0rl7jsrp85m";
vendorSha256 = "079zbm57xfcskwhsfj1x0c0lg6ip6c6dbk8hfwrzkpy8gfs2ysmr";
nativeBuildInputs = [ installShellFiles ];
buildPhase = ''
export GO_LDFLAGS="-s -w"
make GH_VERSION=${version} bin/gh manpages
'';
@@ -4,11 +4,11 @@
buildPythonApplication rec {
pname = "git-machete";
version = "2.15.4";
version = "2.15.5";
src = fetchPypi {
inherit pname version;
sha256 = "0n2lrsjs3flfv7650yfhck1c96wkn41cv49440m7csy5yw16zlim";
sha256 = "11an0hwva1jlf9y7vd9mscs4g6lzja1rwizsani6411xs6m121a3";
};
nativeBuildInputs = [ installShellFiles pbr ];
@@ -1,5 +1,11 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
# Currently `buildGo114Module` is passed as `buildGoModule` from
# `../default.nix`. Please remove the fixed 1.14 once a new release has been
# made and the issue linked below has been closed upstream.
# https://github.com/Arkweid/lefthook/issues/151
buildGoModule rec {
pname = "lefthook";
version = "0.7.2";