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.
This commit is contained in:
Ingo Blechschmidt 2020-10-24 14:52:18 +02:00
parent 975db4fb86
commit eff847932a
1 changed files with 1 additions and 1 deletions

View File

@ -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 ];
};