Incorporate libedit changes from #38968
This commit is contained in:
parent
0b307aa738
commit
4707e69aac
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, buildGoPackage, fetchurl, cmake, xz, which, autoconf, ncurses6 }:
|
{ stdenv, buildGoPackage, fetchurl, cmake, xz, which, autoconf, ncurses6, libedit }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
name = "cockroach-${version}";
|
name = "cockroach-${version}";
|
||||||
@ -11,7 +11,7 @@ buildGoPackage rec {
|
|||||||
sha256 = "0x8hf5qwvgb2w6dcnvy20v77nf19f0l1pb40jf31rm72xhk3bwvy";
|
sha256 = "0x8hf5qwvgb2w6dcnvy20v77nf19f0l1pb40jf31rm72xhk3bwvy";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ncurses6 ];
|
buildInputs = [ (if stdenv.isDarwin then libedit else ncurses6) ];
|
||||||
nativeBuildInputs = [ cmake xz which autoconf ];
|
nativeBuildInputs = [ cmake xz which autoconf ];
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user