Unverified Commit ce08b943 authored by makefu's avatar makefu
Browse files

rtorrent,libtorrent: replace unstableGitUpdater with gitUpdater

parent 42931581
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
, openssl
, pkg-config
, zlib
, unstableGitUpdater
, gitUpdater
}:

stdenv.mkDerivation rec {
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
    zlib
  ];

  passthru.updateScript = unstableGitUpdater { tagPrefix = "v"; };
  passthru.updateScript = gitUpdater { tagPrefix = "v"; };

  enableParallelBuilding = true;

+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
, xmlrpc_c
, zlib
, nixosTests
, unstableGitUpdater
, gitUpdater
}:

stdenv.mkDerivation rec {
@@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
  ];

  passthru = {
    updateScript = unstableGitUpdater { tagPrefix = "v"; };
    updateScript = gitUpdater { tagPrefix = "v"; };
    tests = {
      inherit (nixosTests) rtorrent;
    };