biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / crypto-tracker / default.nix
blob273a0aa63e4c03668843d6bc66795a2338618977
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "crypto-tracker";
5   version = "0.1.8";
7   src = fetchFromGitHub {
8     owner  = "Nox04";
9     repo   = "crypto-tracker";
10     rev    = "v${version}";
11     hash = "sha256-8tTaXpHZWcDq0Jfa9Hf258VYwfimLhYjCAzD4X/Ow0s=";
12   };
14   vendorHash = "sha256-ORdDrZ61u76mz2oZyxfdf7iuo9SnuQeDxESt9lORhgQ=";
16   meta = with lib; {
17     description = "Program to retrieve the latest price for several cryptocurrencies using the CoinMarketCap API";
18     homepage = "https://github.com/Nox04/crypto-tracker";
19     license = licenses.mit;
20     maintainers = with maintainers; [ tiredofit ];
21     mainProgram = "crypto-tracker";
22   };