summary refs log tree commit diff
path: root/pkgs/tools/networking/libreswan
diff options
context:
space:
mode:
authorIngo Blechschmidt <iblech@web.de>2020-10-24 14:52:18 +0200
committerIngo Blechschmidt <iblech@web.de>2020-10-24 14:52:18 +0200
commiteff847932aada7fcf6d4dd374a6ceaf09b9659dc (patch)
tree2618957af0e392c18cef1eda85074c14375aff7e /pkgs/tools/networking/libreswan
parent975db4fb866ab8cd4976dc95fa310cadbc4a9735 (diff)
downloadnixpkgs-eff847932aada7fcf6d4dd374a6ceaf09b9659dc.tar
nixpkgs-eff847932aada7fcf6d4dd374a6ceaf09b9659dc.tar.gz
nixpkgs-eff847932aada7fcf6d4dd374a6ceaf09b9659dc.tar.bz2
nixpkgs-eff847932aada7fcf6d4dd374a6ceaf09b9659dc.tar.lz
nixpkgs-eff847932aada7fcf6d4dd374a6ceaf09b9659dc.tar.xz
nixpkgs-eff847932aada7fcf6d4dd374a6ceaf09b9659dc.tar.zst
nixpkgs-eff847932aada7fcf6d4dd374a6ceaf09b9659dc.zip
libreswan: remove darwin from list of supported platforms
See discussion at https://github.com/NixOS/nixpkgs/pull/101543. Currently,
this build depends on iproute2 which is not available on darwin. This might be
fixed in the future by employing iproute2mac.
Diffstat (limited to 'pkgs/tools/networking/libreswan')
-rw-r--r--pkgs/tools/networking/libreswan/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/libreswan/default.nix b/pkgs/tools/networking/libreswan/default.nix
index 630459f93a9..7e6f2c475ca 100644
--- a/pkgs/tools/networking/libreswan/default.nix
+++ b/pkgs/tools/networking/libreswan/default.nix
@@ -86,7 +86,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     homepage = "https://libreswan.org";
     description = "A free software implementation of the VPN protocol based on IPSec and the Internet Key Exchange";
-    platforms = platforms.linux ++ platforms.darwin ++ platforms.freebsd;
+    platforms = platforms.linux ++ platforms.freebsd;
     license = licenses.gpl2;
     maintainers = [ maintainers.afranchuk ];
   };