libtorrent: remove released patch
This commit is contained in:
parent
4543ae95a3
commit
11961d35e7
|
@ -1,8 +1,8 @@
|
||||||
# NOTE: this is rakshava's version of libtorrent, used mainly by rtorrent
|
# NOTE: this is rakshava's version of libtorrent, used mainly by rtorrent
|
||||||
# This is NOT libtorrent-rasterbar, used by Deluge, qbitttorent, and others
|
# This is NOT libtorrent-rasterbar, used by Deluge, qbitttorent, and others
|
||||||
{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig
|
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
|
||||||
, libtool, autoconf, automake, cppunit
|
, cppunit, openssl, libsigcxx, zlib
|
||||||
, openssl, libsigcxx, zlib }:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "libtorrent";
|
pname = "libtorrent";
|
||||||
|
@ -15,18 +15,8 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1h5y6ab3gs20yyprdfwcw8fh1c6czs4yrdj0kf54d2vp9qwz685r";
|
sha256 = "1h5y6ab3gs20yyprdfwcw8fh1c6czs4yrdj0kf54d2vp9qwz685r";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||||
(fetchpatch {
|
buildInputs = [ cppunit openssl libsigcxx zlib ];
|
||||||
name = "openssl_1_1.patch";
|
|
||||||
url = https://github.com/rakshasa/libtorrent/commit/7b29b6bd2547e72e22b9b7981df27092842d2a10.patch;
|
|
||||||
sha256 = "0nrh2f9bvi1p0gnsck2gzkgd5dd91yk26gcrhrj2f7wh1d4m0pdd";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
|
||||||
buildInputs = [ libtool autoconf automake cppunit openssl libsigcxx zlib ];
|
|
||||||
|
|
||||||
preConfigure = "./autogen.sh";
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://github.com/rakshasa/libtorrent";
|
homepage = "https://github.com/rakshasa/libtorrent";
|
||||||
|
|
Loading…
Reference in New Issue