mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
aria2: Add sphinx build dependency to generate man pages
This commit is contained in:
parent
c637aeff19
commit
c8dd7d49e7
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, fetchpatch, fetchFromGitHub, pkgconfig, autoreconfHook
|
||||
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
|
||||
, cppunit
|
||||
, cppunit, sphinx
|
||||
, Security
|
||||
}:
|
||||
|
||||
|
@ -23,13 +23,17 @@ stdenv.mkDerivation rec {
|
|||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||
nativeBuildInputs = [ pkgconfig autoreconfHook sphinx ];
|
||||
|
||||
buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
|
||||
stdenv.lib.optional stdenv.isDarwin Security;
|
||||
|
||||
configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" ];
|
||||
|
||||
prePatch = ''
|
||||
patchShebangs doc/manual-src/en/mkapiref.py
|
||||
'';
|
||||
|
||||
checkInputs = [ cppunit ];
|
||||
doCheck = false; # needs the net
|
||||
|
||||
|
|
|
@ -858,6 +858,7 @@ in
|
|||
|
||||
aria2 = callPackage ../tools/networking/aria2 {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
inherit (pythonPackages) sphinx;
|
||||
};
|
||||
aria = aria2;
|
||||
|
||||
|
|
Loading…
Reference in a new issue