dcrctl: init at 1.8.0

This commit is contained in:
Aaron Jheng 2023-06-26 15:39:20 +00:00
parent f742512ccc
commit a96c9768b0
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "dcrctl";
version = "1.8.0";
src = fetchFromGitHub {
owner = "decred";
repo = "dcrctl";
rev = "release-v${version}";
hash = "sha256-Nm1r3hHTlW5ob2CLKUgMjVsdzR2gxlFuT6Q3j0pPDSg=";
};
vendorHash = "sha256-Ry3wR2u+vr97icP9jwAVWcFO98JVDo9TrDg9D8hfv5I=";
ldflags = [ "-s" "-w" ];
meta = {
homepage = "https://decred.org";
description = "A secure Decred wallet daemon written in Go (golang)";
license = with lib.licenses; [ isc ];
maintainers = with lib.maintainers; [ aaronjheng ];
};
}

View File

@ -36127,6 +36127,7 @@ with pkgs;
cryptop = python3.pkgs.callPackage ../applications/blockchains/cryptop { };
dcrctl = callPackage ../applications/blockchains/dcrctl { };
dcrd = callPackage ../applications/blockchains/dcrd { };
dcrwallet = callPackage ../applications/blockchains/dcrwallet { };