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

27 lines
669 B
Nix
Raw Normal View History

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