Commit a12cbb6d authored by Sergei Trofimovich's avatar Sergei Trofimovich Committed by zowoq
Browse files

libtorrent: fix updateScript eval

Without the change updater run fails as:

    error: function 'anonymous lambda' called with unexpected argument 'tagPrefix'
parent 05fef775
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
    zlib
  ];

  passthru.updateScript = gitUpdater { tagPrefix = "v"; };
  passthru.updateScript = gitUpdater { rev-prefix = "v"; };

  enableParallelBuilding = true;