You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
842 B
34 lines
842 B
{ stdenv, lib, go, buildGoPackage, dep, fetchgit, git, cacert }: |
|
|
|
buildGoPackage rec { |
|
pname = "dcrd"; |
|
version = "1.1.2"; |
|
rev = "refs/tags/v${version}"; |
|
goPackagePath = "github.com/decred/dcrd"; |
|
|
|
buildInputs = [ go git dep cacert ]; |
|
|
|
GIT_SSL_CAINFO = "${cacert}/etc/ssl/certs/ca-bundle.crt"; |
|
NIX_SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt"; |
|
|
|
src = fetchgit { |
|
inherit rev; |
|
url = "https://${goPackagePath}"; |
|
sha256 = "0xcynipdn9zmmralxj0hjrwyanvhkwfj2b1vvjk5zfc95s2xc1q9"; |
|
}; |
|
|
|
preBuild = '' |
|
export CWD=$(pwd) |
|
cd go/src/github.com/decred/dcrd |
|
dep ensure |
|
go install . ./cmd/... |
|
cd $CWD |
|
''; |
|
|
|
meta = { |
|
homepage = "https://decred.org"; |
|
description = "Decred daemon in Go (golang)"; |
|
license = with lib.licenses; [ isc ]; |
|
broken = stdenv.isLinux; # 2018-04-10 |
|
}; |
|
}
|
|
|