Skip to content

Commit

Permalink
Merge pull request #241620 from msfjarvis/hs/workaround-aria2c-tls-is…
Browse files Browse the repository at this point in the history
…sues

aria2: build with GNUTLS instead of OpenSSL
  • Loading branch information
ajs124 committed Jul 28, 2023
2 parents d479aa0 + 29bd4a3 commit 074e1da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/networking/aria2/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
, gnutls, c-ares, libxml2, sqlite, zlib, libssh2
, cppunit, sphinx
, Security
}:
Expand All @@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
strictDeps = true;
nativeBuildInputs = [ pkg-config autoreconfHook sphinx ];

buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
buildInputs = [ gnutls c-ares libxml2 sqlite zlib libssh2 ] ++
lib.optional stdenv.isDarwin Security;

outputs = [ "bin" "dev" "out" "doc" "man" ];
Expand Down

1 comment on commit 074e1da

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ajs124, you pushed a commit directly to master/release branch
instead of going through a Pull Request.

That's highly discouraged beyond the few exceptions listed
on #118661

Please sign in to comment.