From fc3e47d102558a3cf7468c73beeb76f62d8af913 Mon Sep 17 00:00:00 2001 From: Marti Serra Date: Mon, 3 Mar 2025 17:08:52 +0100 Subject: [PATCH] tribler: fix , closes #375940 (#384197) fixed tribler Co-authored-by: Marti Serra --- pkgs/by-name/tr/tribler/package.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tr/tribler/package.nix b/pkgs/by-name/tr/tribler/package.nix index 3d30b91cfcc2..0ff1b90b8f60 100644 --- a/pkgs/by-name/tr/tribler/package.nix +++ b/pkgs/by-name/tr/tribler/package.nix @@ -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: {