about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/sslsplit/default.nix
blob: bf23d06551d7d0f22ed7e352b0488056e9a35f09 (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
25
26
27
28
29
30
31
{ stdenv, fetchFromGitHub, openssl, libevent, libpcap, libnet, zlib }:

stdenv.mkDerivation rec {
  pname = "sslsplit";
  version = "0.5.5";

  src = fetchFromGitHub {
    owner = "droe";
    repo = pname;
    rev = version;
    sha256 = "1p43z9ln5rbc76v0j1k3r4nhvfw71hq8jzsallb54z9hvwfvqp3l";
  };

  buildInputs = [ openssl libevent libpcap libnet zlib ];

  makeFlags = [
    "PREFIX=$(out)"
    "OPENSSL_BASE=${openssl.dev}"
    "LIBEVENT_BASE=${libevent.dev}"
    "LIBPCAP_BASE=${libpcap}"
    "LIBNET_BASE=${libnet}"
  ];

  meta = with stdenv.lib; {
    description = "Transparent SSL/TLS interception";
    homepage = "https://www.roe.ch/SSLsplit";
    platforms = platforms.all;
    maintainers = with maintainers; [ contrun ];
    license = with licenses; [ bsd2 mit unlicense free ];
  };
}