rtorrent: 0.9.8-unstable -> 0.10.0 (#345364)

This commit is contained in:
Thiago Kenji Okada
2024-10-03 07:18:01 +01:00
committed by GitHub
2 changed files with 12 additions and 12 deletions
+6 -6
View File
@@ -10,18 +10,18 @@
, openssl
, pkg-config
, zlib
, unstableGitUpdater
, gitUpdater
}:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "rakshasa-libtorrent";
version = "0.13.8-unstable-2024-09-01";
version = "0.14.0";
src = fetchFromGitHub {
owner = "rakshasa";
repo = "libtorrent";
rev = "ca6eed1c7e7985016689004eaeed2fb2a119e5f8";
hash = "sha256-Hu0/T5NG7h+COLoOsfi2Uy0BVUPiEhkMhUhFo/JqZq0=";
rev = "v${version}";
hash = "sha256-MDLAp7KFmVvHL+haWVYwWG8gnLkTh6g19ydRkbu9cIs=";
};
nativeBuildInputs = [
@@ -37,7 +37,7 @@ stdenv.mkDerivation {
zlib
];
passthru.updateScript = unstableGitUpdater { tagPrefix = "v"; };
passthru.updateScript = gitUpdater { tagPrefix = "v"; };
enableParallelBuilding = true;
+6 -6
View File
@@ -15,18 +15,18 @@
, xmlrpc_c
, zlib
, nixosTests
, unstableGitUpdater
, gitUpdater
}:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "rakshasa-rtorrent";
version = "0.9.8-unstable-2024-09-07";
version = "0.10.0";
src = fetchFromGitHub {
owner = "rakshasa";
repo = "rtorrent";
rev = "9a93281ded3f6c6bb40593f9bbd3597683cff263";
hash = "sha256-dbZ0Q6v6vu8rlr7p1rPc3Cx/9R53OelkoTNsdAVQAxE=";
rev = "v${version}";
hash = "sha256-G/30Enycpqg/pWC95CzT9LY99kN4tI+S8aSQhnQO+M8=";
};
outputs = [ "out" "man" ];
@@ -60,7 +60,7 @@ stdenv.mkDerivation {
];
passthru = {
updateScript = unstableGitUpdater { tagPrefix = "v"; };
updateScript = gitUpdater { tagPrefix = "v"; };
tests = {
inherit (nixosTests) rtorrent;
};