mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
dante: add darwin support
This commit is contained in:
parent
868bf106f1
commit
d376787bef
|
@ -11,15 +11,15 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [ pam libkrb5 cyrus_sasl miniupnpc ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-libc=libc.so.6"
|
||||
];
|
||||
configureFlags = ["--with-libc=libc${stdenv.targetPlatform.extensions.sharedLibrary}"];
|
||||
|
||||
dontAddDisableDepTrack = stdenv.isDarwin;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A circuit-level SOCKS client/server that can be used to provide convenient and secure network connectivity.";
|
||||
homepage = "https://www.inet.no/dante/";
|
||||
maintainers = [ maintainers.arobyn ];
|
||||
license = licenses.bsdOriginal;
|
||||
platforms = platforms.linux;
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue