rtorrent,libtorrent: replace unstableGitUpdater with gitUpdater

This commit is contained in:
makefu
2024-10-02 21:10:17 +02:00
parent 4293158115
commit ce08b9430a
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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
View File
@@ -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;
};