Skip to content

Commit

Permalink
Merge pull request #267853 from marsam/update-rqbit
Browse files Browse the repository at this point in the history
rqbit: 2.2.1 -> 2.2.2
  • Loading branch information
marsam authored Nov 16, 2023
2 parents a517f66 + ed1c049 commit 1f84935
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, Security }:
{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, darwin }:

rustPlatform.buildRustPackage rec {
pname = "rqbit";
version = "2.2.1";
version = "2.2.2";

src = fetchFromGitHub {
owner = "ikatson";
repo = "rqbit";
rev = "v${version}";
hash = "sha256-7n+T+y60RjmZC7bE96Ljg0xVg4bSzV/LFgezTld4zfI=";
hash = "sha256-9yYHxlvRlO8iJ3SPi0+4lEgBgAaqaDffKChqAe4OsYU=";
};

cargoHash = "sha256-hcuZ4hqGJT/O7vFefKPGZlkqhdsAl5LGAcSRQAEopnM=";
cargoHash = "sha256-dUQiW6J3Wycp5D3mAwGwruU6CkQ534OyP1GdsY7jzEw=";

nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];

buildInputs = lib.optionals stdenv.isLinux [ openssl ]
++ lib.optionals stdenv.isDarwin [ Security ];
++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ];

doCheck = false;

Expand All @@ -25,5 +25,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/ikatson/rqbit";
license = licenses.asl20;
maintainers = with maintainers; [ marsam ];
mainProgram = "rqbit";
};
}
4 changes: 0 additions & 4 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34213,10 +34213,6 @@ with pkgs;
roxctl = callPackage ../applications/networking/cluster/roxctl {
};

rqbit = callPackage ../applications/networking/p2p/rqbit {
inherit (darwin.apple_sdk.frameworks) Security;
};

rssguard = libsForQt5.callPackage ../applications/networking/feedreaders/rssguard { };

scudcloud = callPackage ../applications/networking/instant-messengers/scudcloud { };
Expand Down

0 comments on commit 1f84935

Please sign in to comment.