Merge pull request #247806 from tiredofit/pkg-crypto-tracker

crypto-tracker: init at 0.1.8
This commit is contained in:
OTABI Tomoya 2023-08-17 00:33:56 +09:00 committed by GitHub
commit bd4ac8f9bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 0 deletions

View file

@ -17050,6 +17050,13 @@
githubId = 1292007;
name = "Sébastien Maccagnoni";
};
tiredofit = {
email = "dave@tiredofit.ca";
github = "tiredofit";
githubId = 23528985;
name = "Dave Conroy";
matrix = "@dave:tiredofit.ca";
};
tirex = {
email = "szymon@kliniewski.pl";
name = "Szymon Kliniewski";

View file

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "crypto-tracker";
version = "0.1.8";
src = fetchFromGitHub {
owner = "Nox04";
repo = "crypto-tracker";
rev = "v${version}";
hash = "sha256-8tTaXpHZWcDq0Jfa9Hf258VYwfimLhYjCAzD4X/Ow0s=";
};
vendorHash = "sha256-ORdDrZ61u76mz2oZyxfdf7iuo9SnuQeDxESt9lORhgQ=";
meta = with lib; {
description = "Program to retrieve the latest price for several cryptocurrencies using the CoinMarketCap API";
homepage = "https://github.com/Nox04/crypto-tracker";
license = licenses.mit;
maintainers = with maintainers; [ tiredofit ];
};
}

View file

@ -1674,6 +1674,8 @@ with pkgs;
cope = callPackage ../tools/misc/cope { };
crypto-tracker = callPackage ../tools/misc/crypto-tracker { };
ejson2env = callPackage ../tools/admin/ejson2env { };
davinci-resolve = callPackage ../applications/video/davinci-resolve { };