nixpkgs/pkgs/applications/blockchains/dcrctl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
619 B
Nix
Raw Normal View History

2023-06-26 16:39:20 +01:00
{ 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 = "Secure Decred wallet daemon written in Go (golang)";
license = with lib.licenses; [ isc ];
2023-09-23 13:35:29 +01:00
maintainers = with lib.maintainers; [ ];
2023-11-27 01:17:53 +00:00
mainProgram = "dcrctl";
2023-06-26 16:39:20 +01:00
};
}