init: dcrd, dcrwallet, and dcrctl at 2.0.6. init modules for dcrd and dcrwallet

Signed-off-by: stakeynet <git@stakey.net>
This commit is contained in:
2025-11-29 12:23:09 -08:00
commit 90d1972cdc
10 changed files with 561 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule (finalAttrs: {
pname = "dcrctl";
version = "2.0.6";
src = fetchFromGitHub {
owner = "decred";
repo = "dcrctl";
rev = "release-v${finalAttrs.version}";
hash = "sha256-TxXPPe4AUEck3dFS0+TJgEPenAP43UOwqKWK/3unzjA=";
};
vendorHash = "sha256-YctyhZV6qf8xPnjrkkOwerazKHVOUAkpKe7kV3t6Tis=";
ldflags = [
"-s"
"-w"
];
meta = {
homepage = "https://decred.org";
description = "Decred CLI tool";
license = with lib.licenses; [ isc ];
mainProgram = "dcrctl";
};
})