summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/blockchains/dcrd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/blockchains/dcrd.nix')
-rw-r--r--pkgs/applications/blockchains/dcrd.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/blockchains/dcrd.nix b/pkgs/applications/blockchains/dcrd.nix
new file mode 100644
index 000000000000..16d39e85da15
--- /dev/null
+++ b/pkgs/applications/blockchains/dcrd.nix
@@ -0,0 +1,34 @@
+{ 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
+ };
+}