about summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2022-01-10 15:55:01 +0100
committerGitHub <noreply@github.com>2022-01-10 15:55:01 +0100
commit92b09d4735639fa4ee7fb550aa9e48b64d3e0d88 (patch)
treeb6955197492363580f957e9946008b1fd928a69c /pkgs/tools/networking
parentbbb703f8cfee8353d142fa8cfb273ab3fb3922c6 (diff)
parent29c02b33a95c0f6952bcc31c30dd052e74f16b1c (diff)
Merge pull request #154094 from NickCao/aria2
aria2: fix cross compilation and set strictDeps
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/aria2/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/networking/aria2/default.nix b/pkgs/tools/networking/aria2/default.nix
index db239e034f511..8fabea35ba90b 100644
--- a/pkgs/tools/networking/aria2/default.nix
+++ b/pkgs/tools/networking/aria2/default.nix
@@ -15,6 +15,7 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-ErjFfSJDIgZq0qy0Zn5uZ9bZS2AtJq4FuBVuUuQgPTI=";
   };
 
+  strictDeps = true;
   nativeBuildInputs = [ pkg-config autoreconfHook sphinx ];
 
   buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
@@ -28,7 +29,7 @@ stdenv.mkDerivation rec {
   ];
 
   prePatch = ''
-    patchShebangs doc/manual-src/en/mkapiref.py
+    patchShebangs --build doc/manual-src/en/mkapiref.py
   '';
 
   checkInputs = [ cppunit ];