rtorrent: fix updateScript eval

Without the change updater run fails as:

    error: function 'anonymous lambda' called with unexpected argument 'tagPrefix'
This commit is contained in:
Sergei Trofimovich
2024-10-05 11:34:00 +10:00
committed by zowoq
parent a12cbb6ddb
commit 92248b23e5
+1 -1
View File
@@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
];
passthru = {
updateScript = gitUpdater { tagPrefix = "v"; };
updateScript = gitUpdater { rev-prefix = "v"; };
tests = {
inherit (nixosTests) rtorrent;
};