lol

Merge pull request #42405 from worldofpeace/patch-3

libtorrentRasterbar: fix build with boost167

authored by

Matthew Justin Bauer and committed by
GitHub
9c0ebbe7 a006243b

+8 -1
+8 -1
pkgs/development/libraries/libtorrent-rasterbar/default.nix
··· 1 - { stdenv, fetchurl, automake, autoconf, boost, openssl, lib, libtool, pkgconfig, zlib, python, libiconv, geoip, ... }: 1 + { stdenv, fetchurl, fetchpatch, automake, autoconf, boost, openssl, lib, libtool, pkgconfig, zlib, python, libiconv, geoip, ... }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "libtorrent-rasterbar-${version}"; ··· 10 10 url = "https://github.com/arvidn/libtorrent/archive/libtorrent-${formattedVersion}.tar.gz"; 11 11 sha256 = "0vbw7wcw8x9787rq5fwaibpvvspm3237l8ahbf20gjpzxhn4yfwc"; 12 12 }; 13 + 14 + patches = [ 15 + (fetchpatch { 16 + url = "https://github.com/arvidn/libtorrent/commit/64d6b4900448097b0157abb328621dd211e2947d.patch"; 17 + sha256 = "0d4h0g129rsgm8xikybxypgv6nnya7ap7kskl7q78p4h6y2a0fhc"; 18 + }) 19 + ]; 13 20 14 21 nativeBuildInputs = [ automake autoconf libtool pkgconfig ]; 15 22 buildInputs = [ boost openssl zlib python libiconv geoip ];