coinlive: 0.2.1 -> 0.2.2

This commit is contained in:
Nick Cao 2023-01-13 09:13:32 +08:00
parent 63dc4b38f3
commit 6a1f32b90d
No known key found for this signature in database
2 changed files with 8 additions and 4 deletions

View file

@ -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";

View file

@ -19089,7 +19089,6 @@ with pkgs;
coinlive = callPackage ../tools/misc/coinlive {
inherit (darwin.apple_sdk.frameworks) Security;
openssl = openssl_1_1;
};
cointop = callPackage ../applications/misc/cointop { };