dcrd, dcrwallet, dcrctl 2.0.6 -> 2.1.0

This commit is contained in:
stakeynet 2025-11-30 15:23:17 -08:00
parent e2686fda8e
commit 46102ac68a
Signed by: stakey
GPG Key ID: 0E5D9B54F07D920D
5 changed files with 40 additions and 12 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
.stfolder/ .stfolder/
result

27
flake.lock generated Normal file
View File

@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1764242076,
"narHash": "sha256-sKoIWfnijJ0+9e4wRvIgm/HgE27bzwQxcEmo2J/gNpI=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "2fad6eac6077f03fe109c4d4eb171cf96791faa4",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View File

@ -6,16 +6,16 @@
buildGoModule (finalAttrs: { buildGoModule (finalAttrs: {
pname = "dcrctl"; pname = "dcrctl";
version = "2.0.6"; version = "2.1.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "decred"; owner = "decred";
repo = "dcrctl"; repo = "dcrctl";
rev = "release-v${finalAttrs.version}"; rev = "release-v${finalAttrs.version}";
hash = "sha256-TxXPPe4AUEck3dFS0+TJgEPenAP43UOwqKWK/3unzjA="; hash = "sha256-MTsVW/zvA9fSH2c4tM7bGQPiTwoRt43sgtUNv9PzNAc=";
}; };
vendorHash = "sha256-YctyhZV6qf8xPnjrkkOwerazKHVOUAkpKe7kV3t6Tis="; vendorHash = "sha256-rr0OrphqFPlix4n4YFtPyJItO+enGGx8xOyVTA0e1lc=";
ldflags = [ ldflags = [
"-s" "-s"

View File

@ -4,18 +4,18 @@
fetchFromGitHub, fetchFromGitHub,
}: }:
buildGoModule rec { buildGoModule (finalAttrs: {
pname = "dcrd"; pname = "dcrd";
version = "2.0.6"; version = "2.1.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "decred"; owner = "decred";
repo = "dcrd"; repo = "dcrd";
rev = "dabb3760c7ae45e42ee55f0d86dd8def61b41a69"; rev = "release-v${finalAttrs.version}";
hash = "sha256-mSq4SRSnZOoCuRKVwmb8Y6+KbaTtg+DLf4YX5oApx0k="; hash = "sha256-BtdRjYXJn6xUm2dKhDzwV0xOxL5UG5Cjx+U8VyYVVwE=";
}; };
vendorHash = "sha256-kzb8qh1j2+TlX+et0RSq5qU1LHSEs3Kaf0nHOnGjdd0="; vendorHash = "sha256-hdsoQ74//bTXRclXt3ykjP8RYiBUrthefQ1/BR9MX1w=";
subPackages = [ subPackages = [
"." "."
@ -33,5 +33,5 @@ buildGoModule rec {
license = with lib.licenses; [ isc ]; license = with lib.licenses; [ isc ];
mainProgram = "dcrd"; mainProgram = "dcrd";
}; };
} })

View File

@ -6,16 +6,16 @@
buildGoModule (finalAttrs: { buildGoModule (finalAttrs: {
pname = "dcrwallet"; pname = "dcrwallet";
version = "2.0.6"; version = "2.1.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "decred"; owner = "decred";
repo = "dcrwallet"; repo = "dcrwallet";
rev = "release-v${finalAttrs.version}"; rev = "release-v${finalAttrs.version}";
hash = "sha256-MrQrDip8vE0l5XHkx/zIegSZd/AkWq1aFZLUVPdMy50="; hash = "sha256-GV6fgmX5qrdhCTkyanjaFpS+SrCKenEm7IvgXDEt/04=";
}; };
vendorHash = "sha256-Ulh6RxK+PvS70mJ7TYiGMzKFsR79+asWuQ5W1FAI23I="; vendorHash = "sha256-1AHAfiTFwmwbp477wummASaWSu3bAg9SKGWfeF3Rhds=";
subPackages = [ "." ]; subPackages = [ "." ];