summary refs log tree commit diff
path: root/pkgs/applications/blockchains/bitcoin-knots.nix
blob: eea836ac62d35a11cc35a184711e8eb9f507afcf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ lib, stdenv
, fetchFromGitHub
, pkg-config
, autoreconfHook
, db5
, openssl
, boost
, zlib
, miniupnpc
, libevent
, protobuf
, util-linux
}:

stdenv.mkDerivation rec {
  pname = "bitcoind-knots";
  version = "0.20.0";
  versionDate = "20200614";

  src = fetchFromGitHub {
    owner = "bitcoinknots";
    repo = "bitcoin";
    rev = "v${version}.knots${versionDate}";
    sha256 = "0c8k1154kcwz6q2803wx0zigvqaij1fi5akgfqlj3yl57jjw48jj";
  };

  nativeBuildInputs = [ pkg-config autoreconfHook ];
  buildInputs = [ openssl db5 openssl util-linux
                  protobuf boost zlib miniupnpc libevent ];

  configureFlags = [ "--with-incompatible-bdb"
                     "--with-boost-libdir=${boost.out}/lib" ];

  meta = with lib; {
    description = "An enhanced Bitcoin node software";
    homepage = "https://bitcoinknots.org/";
    license = licenses.mit;
    maintainers = [ maintainers.mmahut ];
    platforms = platforms.linux;
  };
}