36 lines
879 B
Nix
36 lines
879 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "dcrwallet";
|
|
version = "2.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "decred";
|
|
repo = "dcrwallet";
|
|
rev = "release-v${version}";
|
|
hash = "sha256-0Sqv71G/hxk793kY/j9+HH4P1/W+/do87TZascd8UoI=";
|
|
};
|
|
|
|
vendorHash = "sha256-UyU6aSgkHNIi8mP9IUHzD/o726l/XyfgBJOfdCksywo=";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
checkFlags = [
|
|
# Test fails with:
|
|
# 'x509_test.go:201: server did not report bad certificate error;
|
|
# instead errored with [...] tls: unknown certificate authority (*url.Error)'
|
|
"-skip=^TestUntrustedClientCert$"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://decred.org";
|
|
description = "Secure Decred wallet daemon written in Go (golang)";
|
|
license = with lib.licenses; [ isc ];
|
|
maintainers = with lib.maintainers; [ juaningan ];
|
|
mainProgram = "dcrwallet";
|
|
};
|
|
}
|