about summary refs log tree commit diff
path: root/pkgs/tools/networking/strongswan
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2014-09-16 14:10:37 -0400
committerShea Levy <shea@shealevy.com>2014-09-16 14:10:37 -0400
commitd8f80630f7f674c345df50ae5090fb21066afe12 (patch)
tree6326306ccc3eae8256ede4e16dc04514202b6433 /pkgs/tools/networking/strongswan
parente2331b52cde23a3754067636a76ebeb7bdccec6f (diff)
downloadnixlib-d8f80630f7f674c345df50ae5090fb21066afe12.tar
nixlib-d8f80630f7f674c345df50ae5090fb21066afe12.tar.gz
nixlib-d8f80630f7f674c345df50ae5090fb21066afe12.tar.bz2
nixlib-d8f80630f7f674c345df50ae5090fb21066afe12.tar.lz
nixlib-d8f80630f7f674c345df50ae5090fb21066afe12.tar.xz
nixlib-d8f80630f7f674c345df50ae5090fb21066afe12.tar.zst
nixlib-d8f80630f7f674c345df50ae5090fb21066afe12.zip
Add strongswan IPsec manager
Diffstat (limited to 'pkgs/tools/networking/strongswan')
-rw-r--r--pkgs/tools/networking/strongswan/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/tools/networking/strongswan/default.nix b/pkgs/tools/networking/strongswan/default.nix
new file mode 100644
index 000000000000..01b96e2ab4a0
--- /dev/null
+++ b/pkgs/tools/networking/strongswan/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchurl, gmp }:
+
+stdenv.mkDerivation rec {
+  name = "strongswan-5.2.0";
+
+  src = fetchurl {
+    url = "http://download.strongswan.org/${name}.tar.bz2";
+    sha256 = "1ki6v9c54ykppqnj3prgh62na97yajnvnm2zr1gjxzv05syk035h";
+  };
+
+  buildInputs = [ gmp ];
+
+  meta = {
+    maintainers = [ stdenv.lib.maintainers.shlevy ];
+    description = "OpenSource IPsec-based VPN Solution";
+    homepage = https://www.strongswan.org;
+    license = stdenv.lib.licenses.gpl2Plus;
+  };
+}