cointop: 1.6.8 -> 1.6.10

This commit is contained in:
legendofmiracles 2021-12-19 09:11:17 -06:00
parent 5e137de37d
commit c085a87cb0
No known key found for this signature in database
GPG Key ID: 19B082B3DEFE5451

View File

@ -1,19 +1,19 @@
{ lib, buildGoPackage, fetchFromGitHub }:
{ lib, buildGo117Module, fetchFromGitHub }:
buildGoPackage rec {
buildGo117Module rec {
pname = "cointop";
version = "1.6.8";
version = "1.6.10";
src = fetchFromGitHub {
owner = "miguelmota";
repo = pname;
rev = "v${version}";
sha256 = "sha256-uENfTj+pJjX4t+yrd7zrn3LHRbJJSZFCN1N6Ce47wcE=";
sha256 = "sha256-NAw1uoBL/FnNLJ86L9aBCOY65aJn1DDGK0Cd0IO2kr0=";
};
goPackagePath = "github.com/miguelmota/cointop";
vendorSha256 = null;
ldflags = [ "-s" "-w" "-X ${goPackagePath}/cointop.version=${version}" ];
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "The fastest and most interactive terminal based UI application for tracking cryptocurrencies";