nixpkgs/pkgs/tools/networking/strongswan/default.nix

33 lines
800 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gmp, pkgconfig, python, autoreconfHook }:
2014-09-16 18:10:37 +00:00
stdenv.mkDerivation rec {
2014-11-14 20:22:14 +00:00
name = "strongswan-5.2.1";
2014-09-16 18:10:37 +00:00
src = fetchurl {
url = "http://download.strongswan.org/${name}.tar.bz2";
2014-11-14 20:22:14 +00:00
sha256 = "05cjjd7gg65bl6fswj2r2i13nn1nk4x86s06y75gwfdvnlrsnlga";
2014-09-16 18:10:37 +00:00
};
dontPatchELF = true;
buildInputs = [ gmp pkgconfig python autoreconfHook ];
patches = [
2014-12-22 19:55:01 +00:00
./ext_auth-path.patch
./firewall_defaults.patch
2014-12-22 19:55:01 +00:00
./updown-path.patch
];
2014-09-19 05:09:00 +00:00
2014-10-14 08:02:02 +00:00
configureFlags = [ "--enable-swanctl" "--enable-cmd" ];
2014-09-16 18:10:37 +00:00
NIX_LDFLAGS = "-lgcc_s" ;
2014-09-16 18:10:37 +00:00
meta = {
maintainers = [ stdenv.lib.maintainers.shlevy ];
description = "OpenSource IPsec-based VPN Solution";
homepage = https://www.strongswan.org;
license = stdenv.lib.licenses.gpl2Plus;
2014-11-26 20:04:59 +00:00
platforms = stdenv.lib.platforms.all;
2014-09-16 18:10:37 +00:00
};
}