Unverified Commit dba33abe authored by Thiago Kenji Okada's avatar Thiago Kenji Okada Committed by GitHub
Browse files

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

parents d4712e51 ce08b943
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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;
    };