summary refs log tree commit diff
path: root/pkgs/tools/networking/strongswan/default.nix
blob: c8cdac76f419c06268d7f4758732564c81608ff1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchurl, gmp, pkgconfig, python, autoreconfHook }:

stdenv.mkDerivation rec {
  name = "strongswan-5.2.1";

  src = fetchurl {
    url = "http://download.strongswan.org/${name}.tar.bz2";
    sha256 = "05cjjd7gg65bl6fswj2r2i13nn1nk4x86s06y75gwfdvnlrsnlga";
  };

  dontPatchELF = true;

  buildInputs = [ gmp pkgconfig python autoreconfHook ];

  patches = [
    ./firewall_defaults.patch
  ];

  configureFlags = [ "--enable-swanctl" "--enable-cmd" ];

  NIX_LDFLAGS = "-lgcc_s" ;

  meta = {
    maintainers = [ stdenv.lib.maintainers.shlevy ];
    description = "OpenSource IPsec-based VPN Solution";
    homepage = https://www.strongswan.org;
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.all;
  };
}