Merge pull request #239961 from aaronjheng/dcrctl
dcrctl: init at 1.8.0
This commit is contained in:
commit
ba3260b284
24
pkgs/applications/blockchains/dcrctl/default.nix
Normal file
24
pkgs/applications/blockchains/dcrctl/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -36204,6 +36204,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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user