lefthook: use go 1.14 to build
Due to some changes in `go` from 1.14 to 1.15 the lefthook tool currently can't start external programs and errors each test it tries to run, making it effectively useless. This is a temporary fix to make `lefthook` usable again until the upstream issue was fixed and a new release has been cut. Upstream issue: https://github.com/Arkweid/lefthook/issues/151
This commit is contained in:
parent
a8d6213726
commit
4312e2460a
@ -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