summary refs log tree commit diff
path: root/pkgs/tools/networking/curl-unix-socket/default.nix
blob: 985cb0c3015a501b69b6452d0536d655faadc548 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchFromGitHub, go }:

stdenv.mkDerivation {
  name = "curl-unix-socket-2014-09-01";

  src = fetchFromGitHub {
    owner = "Soulou";
    repo = "curl-unix-socket";
    rev = "e926dca77ba7d4a1eeae073918fdd3db92f1a350";
    sha256 = "1ynrrav90y3dhk8jq2fxm3jswj5nvrffwslgykj429hk6n0czb3d";
  };

  buildInputs = [ go ];
  buildPhase = "go build";
  installPhase = "install -D curl-unix-socket* $out/bin/curl-unix-socket";

  meta = with stdenv.lib; {
    description = "Run HTTP requests over UNIX socket";
    license = licenses.mit;
    homepage = https://github.com/Soulou/curl-unix-socket;
    maintainers = with maintainers; [offline];
    platforms = platforms.unix;
  };
}