Merge branch 'master' into staging-next
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
# NOTE: this is rakshava's version of libtorrent, used mainly by rtorrent
|
||||
# This is NOT libtorrent-rasterbar, used by Deluge, qbitttorent, and others
|
||||
{ stdenv, fetchFromGitHub, pkgconfig
|
||||
, libtool, autoconf, automake, cppunit
|
||||
, openssl, libsigcxx, zlib }:
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
|
||||
, cppunit, openssl, libsigcxx, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libtorrent";
|
||||
@@ -15,10 +15,8 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1h5y6ab3gs20yyprdfwcw8fh1c6czs4yrdj0kf54d2vp9qwz685r";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ libtool autoconf automake cppunit openssl libsigcxx zlib ];
|
||||
|
||||
preConfigure = "./autogen.sh";
|
||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||
buildInputs = [ cppunit openssl libsigcxx zlib ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/rakshasa/libtorrent";
|
||||
|
||||
Reference in New Issue
Block a user