Merge pull request #31195 from pbogdan/curl-unix-socket-fix-build

curl-unix-socket: fix build
This commit is contained in:
Samuel Leathers
2017-11-03 11:25:47 -04:00
committed by GitHub
@@ -11,8 +11,8 @@ stdenv.mkDerivation {
}; };
buildInputs = [ go ]; buildInputs = [ go ];
buildPhase = "go build"; buildPhase = "go build -o curl-unix-socket";
installPhase = "install -D curl-unix-socket* $out/bin/curl-unix-socket"; installPhase = "install -D curl-unix-socket $out/bin/curl-unix-socket";
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Run HTTP requests over UNIX socket"; description = "Run HTTP requests over UNIX socket";