From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:49171) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jLtvA-0004dN-J8 for guix-patches@gnu.org; Tue, 07 Apr 2020 15:30:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jLtv9-0005cQ-El for guix-patches@gnu.org; Tue, 07 Apr 2020 15:30:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39399) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jLtv8-0005Zc-DL for guix-patches@gnu.org; Tue, 07 Apr 2020 15:30:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jLtv8-0000Bq-9U for guix-patches@gnu.org; Tue, 07 Apr 2020 15:30:02 -0400 Subject: [bug#40494] [PATCH] new package: fulcrum Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:49009) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jLtuN-0004bW-KI for guix-patches@gnu.org; Tue, 07 Apr 2020 15:29:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jLtuK-0004s3-HF for guix-patches@gnu.org; Tue, 07 Apr 2020 15:29:14 -0400 Received: from mx.kolabnow.com ([95.128.36.40]:24042) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jLtuJ-0004qN-J5 for guix-patches@gnu.org; Tue, 07 Apr 2020 15:29:12 -0400 Received: from localhost (unknown [127.0.0.1]) by ext-mx-out003.mykolab.com (Postfix) with ESMTP id 44F9E40C7A for ; Tue, 7 Apr 2020 21:29:08 +0200 (CEST) Received: from mx.kolabnow.com ([127.0.0.1]) by localhost (ext-mx-out003.mykolab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QFLfQyVt-pLl for ; Tue, 7 Apr 2020 21:29:07 +0200 (CEST) Received: from int-mx003.mykolab.com (unknown [10.9.13.3]) by ext-mx-out003.mykolab.com (Postfix) with ESMTPS id 8A753404AF for ; Tue, 7 Apr 2020 21:29:06 +0200 (CEST) Received: from ext-subm001.mykolab.com (unknown [10.9.6.1]) by int-mx003.mykolab.com (Postfix) with ESMTPS id 34D45421B for ; Tue, 7 Apr 2020 21:29:06 +0200 (CEST) Date: Tue, 07 Apr 2020 21:29:04 +0200 Message-ID: <4863435.31r3eYUQgx@cherry> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="nextPart4537048.LvFx2qVVIh" Content-Transfer-Encoding: 7Bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" Reply-to: Tom Zander , Tom Zander via Guix-patches From: Tom Zander via Guix-patches via To: 40494@debbugs.gnu.org This is a multi-part message in MIME format. --nextPart4537048.LvFx2qVVIh Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" -- Tom Zander --nextPart4537048.LvFx2qVVIh Content-Disposition: attachment; filename="0001-Add-Flowee-Fulcrum-to-the-finance-file.patch" Content-Transfer-Encoding: quoted-printable Content-Type: text/x-patch; charset="UTF-8"; name="0001-Add-Flowee-Fulcrum-to-the-finance-file.patch" =46rom d53bb971f61b81ed0b269d1b4aafe6d328ed591e Mon Sep 17 00:00:00 2001 =46rom: TomZ Date: Tue, 7 Apr 2020 20:48:45 +0200 Subject: [PATCH] Add Flowee Fulcrum to the finance file =2D-- gnu/packages/finance.scm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index ea1fcbe9d4..940644582a 100644 =2D-- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -17,6 +17,7 @@ ;;; Copyright =C2=A9 2019 Sebastian Schott ;;; Copyright =C2=A9 2020 Kei Kebreau ;;; Copyright =C2=A9 2020 Christopher Lemmer Webber +;;; Copyright =C2=A9 2020 Tom Zander ;;; ;;; This file is part of GNU Guix. ;;; @@ -1401,6 +1402,45 @@ electronic cash system. This package provides a com= mand line client and a Qt GUI.") (license license:expat))) =20 +(define-public fulcrum + (package + (name "fulcrum") + (version "1.0.5b") + (source (origin + (method url-fetch) + (uri (string-append "https://gitlab.com/FloweeTheHub/fulcrum/= =2D/archive/v" + version "/fulcrum-v" version ".tar.gz")) + (sha256 + (base32 + "1c1hkik8avill8ha33g76rk4b03j5ac8wiml69q4jav7a63ywgfy")))) + + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + ;; call qmake instead of configure to create a makefile. + (replace 'configure + (lambda _ + (invoke + "qmake" + (string-append "PREFIX=3D" %output) + "features=3D")))))) + (inputs + `(("qtbase" ,qtbase) + ("rocksdb" ,rocksdb) + ("zlib" ,zlib) + ("python" ,python))) + (native-inputs + `(("qttools" ,qttools))) + (home-page "https://gitlab.com/FloweeTheHub/fulcrum") + (synopsis "Fast & nimble SPV Server for Bitcoin Cash") + (description + "Flowee Fulcrum is a server that is the back-end for SPV wallets, +it provides the full API for those walets in a fast and small server. +The full data is stored in a full node, like Flowee the Hub, which +Fulcrum connects to over RPC.") + (license license:gpl3+))) + (define-public beancount (package (name "beancount") =2D-=20 2.25.1 --nextPart4537048.LvFx2qVVIh--