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

31 lines
750 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gmp, pkgconfig, python, autoreconfHook }:
2014-09-16 20:10:37 +02:00
stdenv.mkDerivation rec {
2014-11-14 21:22:14 +01:00
name = "strongswan-5.2.1";
2014-09-16 20:10:37 +02:00
src = fetchurl {
url = "http://download.strongswan.org/${name}.tar.bz2";
2014-11-14 21:22:14 +01:00
sha256 = "05cjjd7gg65bl6fswj2r2i13nn1nk4x86s06y75gwfdvnlrsnlga";
2014-09-16 20:10:37 +02:00
};
dontPatchELF = true;
buildInputs = [ gmp pkgconfig python autoreconfHook ];
patches = [
./firewall_defaults.patch
];
2014-09-19 07:09:00 +02:00
2014-10-14 10:02:02 +02:00
configureFlags = [ "--enable-swanctl" "--enable-cmd" ];
2014-09-16 20:10:37 +02:00
NIX_LDFLAGS = "-lgcc_s" ;
2014-09-16 20:10:37 +02: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 21:04:59 +01:00
platforms = stdenv.lib.platforms.all;
2014-09-16 20:10:37 +02:00
};
}