Merge pull request #97917 from NobbZ/lefthook-go-114
lefthook: use go 1.14 to build
This commit is contained in:
commit
57f00c0459
@ -201,7 +201,11 @@ let
|
|||||||
|
|
||||||
lab = callPackage ./lab { };
|
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 { };
|
legit = callPackage ./legit { };
|
||||||
|
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
{ 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 {
|
buildGoModule rec {
|
||||||
pname = "lefthook";
|
pname = "lefthook";
|
||||||
version = "0.7.2";
|
version = "0.7.2";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user