summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2023-02-03 19:27:21 -0300
committerGitHub <noreply@github.com>2023-02-03 19:27:21 -0300
commit95642fb287d3ea743d0401770f0b2043646d0032 (patch)
tree86ecbeea1f7e0b513259bc7b3faae6864680d9ed /pkgs/tools
parent8d6a85aab74bbd96bb12b8078c581fbf983dbd61 (diff)
parent71034ab59226818c69992971f5d3eeb23c93ee93 (diff)
Merge pull request #210458 from NickCao/openssl3
various: unpin openssl_1_1
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/coinlive/default.nix11
-rw-r--r--pkgs/tools/networking/tunnelto/default.nix8
2 files changed, 12 insertions, 7 deletions
diff --git a/pkgs/tools/misc/coinlive/default.nix b/pkgs/tools/misc/coinlive/default.nix
index a386853247dc..2d81a940dd57 100644
--- a/pkgs/tools/misc/coinlive/default.nix
+++ b/pkgs/tools/misc/coinlive/default.nix
@@ -9,16 +9,16 @@
rustPlatform.buildRustPackage rec {
pname = "coinlive";
- version = "0.2.1";
+ version = "0.2.2";
src = fetchFromGitHub {
owner = "mayeranalytics";
repo = pname;
rev = "v${version}";
- hash = "sha256-i21C1ZSAPoUOBlnDQl40/17yRqmNx3wkjswHJeV9vko=";
+ hash = "sha256-llw97jjfPsDd4nYi6lb9ug6sApPoD54WlzpJswvdbRs=";
};
- cargoSha256 = "sha256-0pUXCY5rZWh26KGD2OU2+M9L0RtCIan6hmuNeIeBEHI=";
+ cargoSha256 = "sha256-T1TgwnohUDvfpn6GXNP4xJGHM3aenMK+ORxE3z3PPA4=";
nativeBuildInputs = [
pkg-config
@@ -30,6 +30,11 @@ rustPlatform.buildRustPackage rec {
Security
];
+ checkFlags = [
+ # requires network access
+ "--skip=utils::test_get_infos"
+ ];
+
meta = with lib; {
description = "Live cryptocurrency prices CLI";
homepage = "https://github.com/mayeranalytics/coinlive";
diff --git a/pkgs/tools/networking/tunnelto/default.nix b/pkgs/tools/networking/tunnelto/default.nix
index 924d2c3afa0f..ff34a39fc0b9 100644
--- a/pkgs/tools/networking/tunnelto/default.nix
+++ b/pkgs/tools/networking/tunnelto/default.nix
@@ -8,16 +8,16 @@
rustPlatform.buildRustPackage rec {
pname = "tunnelto";
- version = "0.1.18";
+ version = "unstable-2022-09-25";
src = fetchFromGitHub {
owner = "agrinman";
repo = pname;
- rev = version;
- sha256 = "sha256-dCHl5EXjUagOKeHxqb3GlAoSDw0u3tQ4GKEtbFF8OSs=";
+ rev = "06428f13c638180dd349a4c42a17b569ab51a25f";
+ sha256 = "sha256-84jGcR/E1QoqIlbGu67muYUtZU66ZJtj4tdZvmYbII4=";
};
- cargoSha256 = "sha256-6HU1w69cJj+tE1IUUNoxh0cHEwlRKF5qWx7FiOHeUNk=";
+ cargoSha256 = "sha256-bVHvQRtnKwrwS0huax6OrteYfxws2Ce2fFaBQ3oeoow=";
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
buildInputs = [ ]