darwin purity: aria2
This commit is contained in:
parent
020bd4a723
commit
42fffee9da
@ -1,5 +1,6 @@
|
||||
{ stdenv, fetchurl, pkgconfig, autoreconfHook
|
||||
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
|
||||
, Security
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -12,7 +13,8 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ];
|
||||
buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
|
||||
stdenv.lib.optional stdenv.isDarwin Security;
|
||||
|
||||
configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" ];
|
||||
|
||||
|
@ -628,7 +628,10 @@ let
|
||||
|
||||
arc-gtk-theme = callPackage ../misc/themes/arc { };
|
||||
|
||||
aria2 = callPackage ../tools/networking/aria2 { };
|
||||
aria2 = callPackage ../tools/networking/aria2 {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
aria = aria2;
|
||||
|
||||
at = callPackage ../tools/system/at { };
|
||||
|
Loading…
Reference in New Issue
Block a user