tribler: fix , closes #375940 (#384197)

fixed tribler

Co-authored-by: Marti Serra <marti.serra@protonmail.com>
This commit is contained in:
Marti Serra
2025-03-03 17:08:52 +01:00
committed by GitHub
co-authored by Marti Serra
parent 64729d4666
commit fc3e47d102
+7 -2
View File
@@ -8,11 +8,16 @@
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: {