mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 11:03:57 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, openssl, libevent, libpcap, libnet, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sslsplit";
|
|
version = "0.5.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "droe";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1p43z9ln5rbc76v0j1k3r4nhvfw71hq8jzsallb54z9hvwfvqp3l";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "fix-openssl-3-build.patch";
|
|
url = "https://github.com/droe/sslsplit/commit/e17de8454a65d2b9ba432856971405dfcf1e7522.patch";
|
|
hash = "sha256-sEwP7f2PSqXdMqLub9zrfQgH8I4oe9klVPzNpJjrPJ8=";
|
|
})
|
|
];
|
|
|
|
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 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 ];
|
|
mainProgram = "sslsplit";
|
|
};
|
|
}
|