37 lines
741 B
Nix
37 lines
741 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, qmake
|
|
, python3
|
|
, qtbase
|
|
, rocksdb
|
|
, zeromq
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fulcrum";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cculianu";
|
|
repo = "Fulcrum";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-oywxGg+Ss7qBITI2PBXQs5ph7PZbJ3c1smtT/TcVoLI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config qmake ];
|
|
|
|
dontWrapQtApps = true; # no GUI
|
|
|
|
buildInputs = [ python3 qtbase rocksdb zeromq ];
|
|
|
|
meta = with lib; {
|
|
description = "Fast & nimble SPV server for Bitcoin Cash & Bitcoin BTC";
|
|
homepage = "https://github.com/cculianu/Fulcrum";
|
|
maintainers = with maintainers; [ prusnak ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|