2019-10-02 02:23:06 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, autoreconfHook, openssl, db48, boost, zeromq, rapidcheck
|
|
|
|
, zlib, miniupnpc, qtbase ? null, qttools ? null, wrapQtAppsHook ? null, utillinux, protobuf, python3, qrencode, libevent
|
|
|
|
, withGui }:
|
2019-08-01 08:05:07 -07:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec{
|
2019-10-02 02:23:06 -07:00
|
|
|
name = "elements" + (toString (optional (!withGui) "d")) + "-" + version;
|
2020-06-21 03:12:23 -07:00
|
|
|
version = "0.18.1.8";
|
2019-08-01 08:05:07 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
urls = [
|
|
|
|
"https://github.com/ElementsProject/elements/archive/elements-${version}.tar.gz"
|
|
|
|
];
|
2020-06-21 03:12:23 -07:00
|
|
|
sha256 = "8e1a69e959617c0d200150dff9b0302b5c295ec96f1c94c39c3e8af4d99295de";
|
2019-10-02 02:23:06 -07:00
|
|
|
};
|
2019-08-01 08:05:07 -07:00
|
|
|
|
2019-10-02 02:23:06 -07:00
|
|
|
nativeBuildInputs =
|
|
|
|
[ pkgconfig autoreconfHook ]
|
|
|
|
++ optional withGui wrapQtAppsHook;
|
2019-08-01 08:05:07 -07:00
|
|
|
buildInputs = [ openssl db48 boost zlib zeromq
|
2019-10-02 02:23:06 -07:00
|
|
|
miniupnpc protobuf libevent]
|
|
|
|
++ optionals stdenv.isLinux [ utillinux ]
|
|
|
|
++ optionals withGui [ qtbase qttools qrencode ];
|
2019-08-01 08:05:07 -07:00
|
|
|
|
|
|
|
configureFlags = [ "--with-boost-libdir=${boost.out}/lib"
|
|
|
|
"--disable-bench"
|
|
|
|
] ++ optionals (!doCheck) [
|
|
|
|
"--disable-tests"
|
|
|
|
"--disable-gui-tests"
|
2019-10-02 02:23:06 -07:00
|
|
|
]
|
|
|
|
++ optionals withGui [ "--with-gui=qt5"
|
|
|
|
"--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin"
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [ rapidcheck python3 ];
|
|
|
|
|
2019-08-01 08:05:07 -07:00
|
|
|
doCheck = true;
|
|
|
|
|
2019-10-02 02:23:06 -07:00
|
|
|
checkFlags =
|
|
|
|
[ "LC_ALL=C.UTF-8" ]
|
|
|
|
# QT_PLUGIN_PATH needs to be set when executing QT, which is needed when testing Bitcoin's GUI.
|
|
|
|
# See also https://github.com/NixOS/nixpkgs/issues/24256
|
|
|
|
++ optional withGui "QT_PLUGIN_PATH=${qtbase}/${qtbase.qtPluginPrefix}";
|
|
|
|
|
2019-08-01 08:05:07 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Open Source implementation of advanced blockchain features extending the Bitcoin protocol";
|
|
|
|
longDescription= ''
|
|
|
|
The Elements blockchain platform is a collection of feature experiments and extensions to the
|
|
|
|
Bitcoin protocol. This platform enables anyone to build their own businesses or networks
|
|
|
|
pegged to Bitcoin as a sidechain or run as a standalone blockchain with arbitrary asset
|
|
|
|
tokens.
|
|
|
|
'';
|
|
|
|
homepage = http://www.github.com/ElementsProject/elements;
|
|
|
|
license = licenses.mit;
|
|
|
|
# elements needs hexdump to build, which doesn't seem to build on darwin at the moment.
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|