overlays: downgrade transmission

Some trackers have banned v4.0.6
This commit is contained in:
Antoine Martin 2026-01-01 22:20:56 +01:00
parent f7a71896d2
commit 1faaec9625
2 changed files with 14 additions and 0 deletions

View file

@ -1,2 +1,3 @@
{ {
transmission_4 = import ./downgrade-transmission;
} }

View file

@ -0,0 +1,13 @@
self: prev: {
tranmission_4 = prev.transmission_4.overrideAttrs (_: {
version = "4.0.5";
src = self.fetchFromGitHub {
owner = "transmission";
repo = "transmission";
rev = "4.0.5";
hash = "sha256-gd1LGAhMuSyC/19wxkoE2mqVozjGPfupIPGojKY0Hn4=";
fetchSubmodules = true;
};
});
}