libtorrent: 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:25:27 +01:00 committed by zowoq
parent 05fef7752c
commit a12cbb6ddb

View File

@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
zlib
];
passthru.updateScript = gitUpdater { tagPrefix = "v"; };
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
enableParallelBuilding = true;