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
commit 9f85fc52b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";