coinlive: init at 0.2.1

+37
+35
pkgs/tools/misc/coinlive/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , openssl 4 + , pkg-config 5 + , rustPlatform 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "coinlive"; 10 + version = "0.2.1"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "mayeranalytics"; 14 + repo = pname; 15 + rev = "v${version}"; 16 + hash = "sha256-i21C1ZSAPoUOBlnDQl40/17yRqmNx3wkjswHJeV9vko="; 17 + }; 18 + 19 + cargoSha256 = "sha256-0pUXCY5rZWh26KGD2OU2+M9L0RtCIan6hmuNeIeBEHI="; 20 + 21 + nativeBuildInputs = [ 22 + pkg-config 23 + ]; 24 + 25 + buildInputs = [ 26 + openssl 27 + ]; 28 + 29 + meta = with lib; { 30 + description = "Live cryptocurrency prices CLI"; 31 + homepage = "https://github.com/mayeranalytics/coinlive"; 32 + license = licenses.gpl3Only; 33 + maintainers = with maintainers; [ fab ]; 34 + }; 35 + }
+2
pkgs/top-level/all-packages.nix
··· 17487 17487 17488 17488 CoinMP = callPackage ../development/libraries/CoinMP { }; 17489 17489 17490 + coinlive = callPackage ../tools/misc/coinlive { }; 17491 + 17490 17492 cointop = callPackage ../applications/misc/cointop { }; 17491 17493 17492 17494 collada-dom = callPackage ../development/libraries/collada-dom { };