aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/blockchains/bitcoin-knots.nix
blob: dd0132df4d941eb620425f9b6e36e59ef9d4f0fa (plain)
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
{ stdenv
, fetchFromGitHub
, pkgconfig
, 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 = [ pkgconfig autoreconfHook ];
  buildInputs = [ openssl db5 openssl util-linux
                  protobuf boost zlib miniupnpc libevent ];

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

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