3
0
Fork 0
forked from mirrors/nixpkgs

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 ];
buildPhase = "go build";
installPhase = "install -D curl-unix-socket* $out/bin/curl-unix-socket";
buildPhase = "go build -o curl-unix-socket";
installPhase = "install -D curl-unix-socket $out/bin/curl-unix-socket";
meta = with stdenv.lib; {
description = "Run HTTP requests over UNIX socket";