Merge pull request #3597 from Fuuzetsu/rtorrent-xmlrpc
rtorrent: compile with xmlrpc-c for 3rd party UIs
This commit is contained in:
commit
4329812ec7
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, fetchurl, libtorrent, ncurses, pkgconfig, libsigcxx, curl
|
||||
, zlib, openssl
|
||||
, zlib, openssl, xmlrpc_c
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -10,7 +10,8 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "113yrrac75vqi4g8r6bgs0ggjllj9bkg9shv08vqzdhkwqg2q2mw";
|
||||
};
|
||||
|
||||
buildInputs = [ libtorrent ncurses pkgconfig libsigcxx curl zlib openssl ];
|
||||
buildInputs = [ libtorrent ncurses pkgconfig libsigcxx curl zlib openssl xmlrpc_c ];
|
||||
configureFlags = "--with-xmlrpc-c";
|
||||
|
||||
# postInstall = ''
|
||||
# mkdir -p $out/share/man/man1 $out/share/rtorrent
|
||||
|
|
Loading…
Reference in a new issue