diff options
author | Linnnus <[email protected]> | 2024-03-09 20:01:10 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-04-07 13:41:38 +0200 |
commit | 4c95d6f14be1bde2ae9e33d2318bf8e1c8ff8134 (patch) | |
tree | 5204448d084ddf28ea511c07d5785cf5b837742b /overlays | |
parent | 7dac2d7245bc475ac0e8aa0ad4b41f3aa98f39f6 (diff) |
hosts/ahmed: Add qBittorrent
Diffstat (limited to 'overlays')
-rw-r--r-- | overlays/default.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/overlays/default.nix b/overlays/default.nix index b87fbfb..438d924 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -19,6 +19,20 @@ + (final.lib.strings.optionalString (final.stdenv.cc.isGNU or false) " -Wno-maybe-uninitialized"); }); + # Use a slightly newer version of qBittorrent that doesn't include the password bug. + # + # See: https://old.reddit.com/r/qBittorrent/comments/1827zqn/locked_out_of_qbittorrent/kahat1u/?context=3 + # See: https://www.qbittorrent.org/news#mon-nov-27th-2023---qbittorrent-v4.6.2-release + qbittorrent-nox = prev.qbittorrent-nox.overrideAttrs (old: rec { + version = "4.6.2"; + src = final.fetchFromGitHub { + owner = "qbittorrent"; + repo = "qBittorrent"; + rev = "release-${version}"; + hash = "sha256-+leX0T+yJUG6F7WbHa3nCexQZmd7RRfK8Uc+suMJ+vI="; + }; + }); + # Use newest version. noweb = prev.noweb.overrideAttrs (old: rec { version = "2_13rc3"; |