2016-02-24 04:06:45 +00:00
|
|
|
{ stdenv, fetchurl, makeWrapper,
|
|
|
|
pkgconfig, systemd, gmp, unbound, bison, flex, pam, libevent, libcap_ng, curl, nspr,
|
2016-05-24 09:34:51 +01:00
|
|
|
bash, iproute, iptables, procps, coreutils, gnused, gawk, nss, which, python,
|
2019-12-07 23:52:42 +00:00
|
|
|
docs ? false, xmlto, libselinux, ldns
|
2016-02-24 04:06:45 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
binPath = stdenv.lib.makeBinPath [
|
2016-05-24 09:34:51 +01:00
|
|
|
bash iproute iptables procps coreutils gnused gawk nss.tools which python
|
2016-02-24 04:06:45 +00:00
|
|
|
];
|
|
|
|
in
|
|
|
|
|
|
|
|
assert docs -> xmlto != null;
|
2019-12-07 23:52:42 +00:00
|
|
|
assert stdenv.isLinux -> libselinux != null;
|
2016-02-24 04:06:45 +00:00
|
|
|
|
2020-05-18 23:43:36 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libreswan";
|
|
|
|
version = "3.32";
|
2016-02-24 04:06:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-05-18 23:43:36 +01:00
|
|
|
url = "https://download.libreswan.org/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "0bj3g6qwd3ir3gk6hdl9npy3k44shf56vcgjahn30qpmx3z5fsr3";
|
2016-02-24 04:06:45 +00:00
|
|
|
};
|
|
|
|
|
2017-11-16 02:43:15 +00:00
|
|
|
# These flags were added to compile v3.18. Try to lift them when updating.
|
2019-10-30 11:34:47 +00:00
|
|
|
NIX_CFLAGS_COMPILE = toString [ "-Wno-error=redundant-decls" "-Wno-error=format-nonliteral"
|
2018-03-08 19:44:43 +00:00
|
|
|
# these flags were added to build with gcc7
|
|
|
|
"-Wno-error=implicit-fallthrough"
|
|
|
|
"-Wno-error=format-truncation"
|
|
|
|
"-Wno-error=pointer-compare"
|
2019-11-03 12:32:09 +00:00
|
|
|
"-Wno-error=stringop-truncation"
|
2020-10-24 12:22:19 +01:00
|
|
|
# The following flag allows libreswan v3.32 to work with NSS 3.22, see
|
|
|
|
# https://github.com/libreswan/libreswan/issues/334.
|
|
|
|
# This flag should not be needed for libreswan v3.33 (which is not yet released).
|
|
|
|
"-DNSS_PKCS11_2_0_COMPAT=1"
|
2018-03-08 19:44:43 +00:00
|
|
|
];
|
2017-11-16 02:43:15 +00:00
|
|
|
|
2017-09-05 23:03:42 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper pkgconfig ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ bash iproute iptables systemd coreutils gnused gawk gmp unbound bison flex pam libevent
|
2019-12-07 23:52:42 +00:00
|
|
|
libcap_ng curl nspr nss python ldns ]
|
2020-05-18 23:43:36 +01:00
|
|
|
++ stdenv.lib.optional docs xmlto
|
|
|
|
++ stdenv.lib.optional stdenv.isLinux libselinux;
|
2016-02-24 04:06:45 +00:00
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
# Correct bash path
|
|
|
|
sed -i -e 's|/bin/bash|/usr/bin/env bash|' mk/config.mk
|
|
|
|
|
2019-12-07 23:52:42 +00:00
|
|
|
# Fix systemd unit directory, and prevent the makefile from trying to reload the
|
|
|
|
# systemd daemon or create tmpfiles
|
|
|
|
sed -i -e 's|UNITDIR=.*$|UNITDIR=$\{out}/etc/systemd/system/|g' \
|
|
|
|
-e 's|TMPFILESDIR=.*$|TMPFILESDIR=$\{out}/tmpfiles.d/|g' \
|
|
|
|
-e 's|systemctl|true|g' \
|
|
|
|
-e 's|systemd-tmpfiles|true|g' \
|
|
|
|
initsystems/systemd/Makefile
|
2016-02-24 04:06:45 +00:00
|
|
|
|
|
|
|
# Fix the ipsec program from crushing the PATH
|
|
|
|
sed -i -e 's|\(PATH=".*"\):.*$|\1:$PATH|' programs/ipsec/ipsec.in
|
|
|
|
|
|
|
|
# Fix python script to use the correct python
|
|
|
|
sed -i -e 's|#!/usr/bin/python|#!/usr/bin/env python|' -e 's/^\(\W*\)installstartcheck()/\1sscmd = "ss"\n\0/' programs/verify/verify.in
|
|
|
|
'';
|
2017-11-16 02:43:15 +00:00
|
|
|
|
2016-02-24 04:06:45 +00:00
|
|
|
# Set appropriate paths for build
|
|
|
|
preBuild = "export INC_USRLOCAL=\${out}";
|
|
|
|
|
2017-11-16 02:43:15 +00:00
|
|
|
makeFlags = [
|
2016-02-24 04:06:45 +00:00
|
|
|
"INITSYSTEM=systemd"
|
|
|
|
(if docs then "all" else "base")
|
|
|
|
];
|
|
|
|
|
|
|
|
installTargets = [ (if docs then "install" else "install-base") ];
|
|
|
|
# Hack to make install work
|
|
|
|
installFlags = [
|
|
|
|
"FINALVARDIR=\${out}/var"
|
|
|
|
"FINALSYSCONFDIR=\${out}/etc"
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for i in $out/bin/* $out/libexec/ipsec/*; do
|
|
|
|
wrapProgram "$i" --prefix PATH ':' "$out/bin:${binPath}"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2017-11-16 02:43:15 +00:00
|
|
|
enableParallelBuilding = true;
|
2016-03-02 15:36:22 +00:00
|
|
|
|
2018-09-10 20:28:59 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-06 19:37:20 +00:00
|
|
|
homepage = "https://libreswan.org";
|
2016-02-24 04:06:45 +00:00
|
|
|
description = "A free software implementation of the VPN protocol based on IPSec and the Internet Key Exchange";
|
2020-10-24 13:52:18 +01:00
|
|
|
platforms = platforms.linux ++ platforms.freebsd;
|
2018-09-10 20:28:59 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.afranchuk ];
|
2016-02-24 04:06:45 +00:00
|
|
|
};
|
|
|
|
}
|