mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
36 lines
741 B
Nix
36 lines
741 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, qmake
|
|
, python3
|
|
, qtbase
|
|
, rocksdb
|
|
, zeromq
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fulcrum";
|
|
version = "1.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cculianu";
|
|
repo = "Fulcrum";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-FIa6eAE6yyJR5UdlCXB2Gx3DqN528POxb0eYOCpVjJk=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|