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-05 11:34:00 +10:00
committed by zowoq
parent 05fef7752c
commit a12cbb6ddb
+1 -1
View File
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
zlib
];
passthru.updateScript = gitUpdater { tagPrefix = "v"; };
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
enableParallelBuilding = true;