ipsec-tools: add version 0.8.0
This commit is contained in:
parent
094cbf9b4d
commit
00d03f2f50
42
pkgs/os-specific/linux/ipsec-tools/default.nix
Normal file
42
pkgs/os-specific/linux/ipsec-tools/default.nix
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
{ stdenv, fetchurl, linuxHeaders, readline, openssl, flex, krb5, 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.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/ipsec-tools/${name}.tar.bz2";
|
||||||
|
sha256 = "2359a24aa8eda9ca7043fc47950c8e6b7f58a07c5d5ad316aa7de2bc5e3a8717";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ readline openssl flex krb5 pam ];
|
||||||
|
|
||||||
|
patches = [ ./dont-create-localstatedir-during-install.patch ];
|
||||||
|
|
||||||
|
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 = {
|
||||||
|
homepage = "http://ipsec-tools.sourceforge.net/";
|
||||||
|
description = "Port of KAME's IPsec utilities to the Linux-2.6 IPsec implementation";
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
maintainers = [stdenv.lib.maintainers.simons];
|
||||||
|
};
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
diff -ubr ipsec-tools-0.8.0-orig/src/racoon/Makefile.in ipsec-tools-0.8.0/src/racoon/Makefile.in
|
||||||
|
--- ipsec-tools-0.8.0-orig/src/racoon/Makefile.in 2012-10-20 13:01:07.700903316 +0200
|
||||||
|
+++ ipsec-tools-0.8.0/src/racoon/Makefile.in 2012-10-20 13:01:13.177832616 +0200
|
||||||
|
@@ -1085,9 +1085,6 @@
|
||||||
|
uninstall-sbinPROGRAMS
|
||||||
|
|
||||||
|
|
||||||
|
-install-exec-local:
|
||||||
|
- ${mkinstalldirs} $(DESTDIR)${adminsockdir}
|
||||||
|
-
|
||||||
|
# special object rules
|
||||||
|
crypto_openssl_test.o: crypto_openssl.c
|
||||||
|
$(COMPILE) -DEAYDEBUG -o crypto_openssl_test.o -c $(srcdir)/crypto_openssl.c
|
@ -1270,6 +1270,8 @@ let
|
|||||||
{ hurd = gnu.hurdCrossIntermediate; })
|
{ hurd = gnu.hurdCrossIntermediate; })
|
||||||
else null;
|
else null;
|
||||||
|
|
||||||
|
ipsecTools = callPackage ../os-specific/linux/ipsec-tools { };
|
||||||
|
|
||||||
patch = gnupatch;
|
patch = gnupatch;
|
||||||
|
|
||||||
pbzip2 = callPackage ../tools/compression/pbzip2 { };
|
pbzip2 = callPackage ../tools/compression/pbzip2 { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user