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-04 06:28:51 +01:00 committed by zowoq
parent a12cbb6ddb
commit 92248b23e5

View File

@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
];
passthru = {
updateScript = gitUpdater { tagPrefix = "v"; };
updateScript = gitUpdater { rev-prefix = "v"; };
tests = {
inherit (nixosTests) rtorrent;
};