summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-11-16 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-11-16 04:20:00 +0000
commited1c0495d057f0fc0cd2d109483a5b5f49375227 (patch)
treea1ad96b5a96ba350f41f4f24daf675ba67fb666e
parentfd7e1cebf01344b23078979edf6a0bbd44db83bd (diff)
downloadnixpkgs-ed1c0495d057f0fc0cd2d109483a5b5f49375227.tar
nixpkgs-ed1c0495d057f0fc0cd2d109483a5b5f49375227.tar.gz
nixpkgs-ed1c0495d057f0fc0cd2d109483a5b5f49375227.tar.bz2
nixpkgs-ed1c0495d057f0fc0cd2d109483a5b5f49375227.tar.lz
nixpkgs-ed1c0495d057f0fc0cd2d109483a5b5f49375227.tar.xz
nixpkgs-ed1c0495d057f0fc0cd2d109483a5b5f49375227.tar.zst
nixpkgs-ed1c0495d057f0fc0cd2d109483a5b5f49375227.zip
rqbit: 2.2.1 -> 2.2.2
Diff: https://github.com/ikatson/rqbit/compare/v2.2.1...v2.2.2
-rw-r--r--pkgs/by-name/rq/rqbit/package.nix (renamed from pkgs/applications/networking/p2p/rqbit/default.nix)11
-rw-r--r--pkgs/top-level/all-packages.nix4
2 files changed, 6 insertions, 9 deletions
diff --git a/pkgs/applications/networking/p2p/rqbit/default.nix b/pkgs/by-name/rq/rqbit/package.nix
index a60b3e9ddf7..0505cbb1b69 100644
--- a/pkgs/applications/networking/p2p/rqbit/default.nix
+++ b/pkgs/by-name/rq/rqbit/package.nix
@@ -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;
 
@@ -25,5 +25,6 @@ rustPlatform.buildRustPackage rec {
     homepage = "https://github.com/ikatson/rqbit";
     license = licenses.asl20;
     maintainers = with maintainers; [ marsam ];
+    mainProgram = "rqbit";
   };
 }
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 5ed360c16d2..caef0bfaf5b 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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 { };