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