You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kinda hard to guess which versions this crate works with, would be great to provide a devenv.nix or nix shell that builds the specific versions that its expecting and use that rather than installing and downloading things separately (I couldn't get it to work on macos).
{lib,stdenv,fetchurl,pkg-config,autoreconfHook,boost,libevent,miniupnpc,zeromq,zlib,db48,sqlite,qrencode,python3,util-linux,darwin}:
stdenv.mkDerivationrec{pname="bitcoind";version="25.0";src=fetchurl{url="https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz";sha256="sha256-XfZ89CyjuaDDjNr+xbu1F9pbWNJR8yyNKkdRH5vh68I=";};nativeBuildInputs=[pkg-configautoreconfHook];buildInputs=[boostlibeventminiupnpczeromqzlibdb48sqliteqrencodepython3util-linux]++lib.optionalsstdenv.isDarwin[darwin.apple_sdk.frameworks.Foundation];configureFlags=["--with-boost-libdir=${boost.out}/lib""--disable-bench""--disable-tests""--disable-gui-tests""--disable-fuzz-binary"];enableParallelBuilding=true;meta=withlib;{description="Bitcoin Core daemon";longDescription='' Bitcoin is a free open source peer-to-peer electronic cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and transact directly with each other, with the help of a P2P network to check for double-spending. '';homepage="https://bitcoincore.org/";maintainers=withmaintainers;[roconnor];license=licenses.mit;platforms=platforms.unix;};}
The text was updated successfully, but these errors were encountered:
Kinda hard to guess which versions this crate works with, would be great to provide a devenv.nix or nix shell that builds the specific versions that its expecting and use that rather than installing and downloading things separately (I couldn't get it to work on macos).
Once I get this to work, I'm happy to submit that
The text was updated successfully, but these errors were encountered: