mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
49 lines
1.4 KiB
Nix
49 lines
1.4 KiB
Nix
{ stdenv, fetchurl, fetchpatch, linuxHeaders, readline, openssl, flex, kerberos, pam }:
|
|
|
|
# TODO: These tools are supposed to work under NetBSD and FreeBSD as
|
|
# well, so I guess it's not appropriate to place this expression in
|
|
# "os-specific/linux/ipsec-tools". Since I cannot verify that the
|
|
# expression actually builds on those platforms, I'll leave it here for
|
|
# the time being.
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ipsec-tools-0.8.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/ipsec-tools/${name}.tar.bz2";
|
|
sha256 = "0b9gfbz78k2nj0k7jdlm5kajig628ja9qm0z5yksiwz22s3v7dlf";
|
|
};
|
|
|
|
buildInputs = [ readline openssl flex kerberos pam ];
|
|
|
|
patches = [
|
|
./dont-create-localstatedir-during-install.patch
|
|
./CVE-2015-4047.patch
|
|
./CVE-2016-10396.patch
|
|
];
|
|
|
|
# fix build with newer gcc versions
|
|
preConfigure = ''substituteInPlace configure --replace "-Werror" "" '';
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc --localstatedir=/var"
|
|
"--with-kernel-headers=${linuxHeaders}/include"
|
|
"--disable-security-context"
|
|
"--enable-adminport"
|
|
"--enable-dpd"
|
|
"--enable-frag"
|
|
"--enable-gssapi"
|
|
"--enable-hybrid"
|
|
"--enable-natt"
|
|
"--enable-shared"
|
|
"--enable-stats"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://ipsec-tools.sourceforge.net/";
|
|
description = "Port of KAME's IPsec utilities to the Linux-2.6 IPsec implementation";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|