tribler: fix , closes #375940 (#384197)

fixed tribler

Co-authored-by: Marti Serra <marti.serra@protonmail.com>

Changed files
+7 -2
pkgs
by-name
tr
tribler
+7 -2
pkgs/by-name/tr/tribler/package.nix
···
libtorrent-rasterbar-1_2_x,
qt5,
nix-update-script,
+
boost186,
}:
let
-
# libtorrent-rasterbar-1_2_x requires python311
-
python3 = python311;
+
# libtorrent-rasterbar-1_2_x requires python311 and boost 1.86
+
python3 = python311.override {
+
packageOverrides = final: prev: {
+
boost = boost186;
+
};
+
};
libtorrent = (python3.pkgs.toPythonModule (libtorrent-rasterbar-1_2_x)).python;
in
stdenv.mkDerivation (finalAttrs: {