Merge pull request #154094 from NickCao/aria2

aria2: fix cross compilation and set strictDeps

authored by Renaud and committed by GitHub 92b09d47 bbb703f8

+2 -2
+2 -1
pkgs/tools/networking/aria2/default.nix
··· 15 15 sha256 = "sha256-ErjFfSJDIgZq0qy0Zn5uZ9bZS2AtJq4FuBVuUuQgPTI="; 16 16 }; 17 17 18 + strictDeps = true; 18 19 nativeBuildInputs = [ pkg-config autoreconfHook sphinx ]; 19 20 20 21 buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++ ··· 28 29 ]; 29 30 30 31 prePatch = '' 31 - patchShebangs doc/manual-src/en/mkapiref.py 32 + patchShebangs --build doc/manual-src/en/mkapiref.py 32 33 ''; 33 34 34 35 checkInputs = [ cppunit ];
-1
pkgs/top-level/all-packages.nix
··· 2036 2036 2037 2037 aria2 = callPackage ../tools/networking/aria2 { 2038 2038 inherit (darwin.apple_sdk.frameworks) Security; 2039 - inherit (python3Packages) sphinx; 2040 2039 }; 2041 2040 aria = aria2; 2042 2041