bd95ace2d3
fixes #179474 follow-up to #179795
113 lines
3.3 KiB
Nix
113 lines
3.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, util-linux
|
|
, hexdump
|
|
, autoSignDarwinBinariesHook
|
|
, wrapQtAppsHook ? null
|
|
, boost
|
|
, libevent
|
|
, miniupnpc
|
|
, zeromq
|
|
, zlib
|
|
, db48
|
|
, sqlite
|
|
, qrencode
|
|
, qtbase ? null
|
|
, qttools ? null
|
|
, python3
|
|
, nixosTests
|
|
, withGui
|
|
, withWallet ? true
|
|
}:
|
|
|
|
with lib;
|
|
let
|
|
version = "23.0";
|
|
majorVersion = versions.major version;
|
|
desktop = fetchurl {
|
|
url = "https://raw.githubusercontent.com/bitcoin-core/packaging/${majorVersion}.x/debian/bitcoin-qt.desktop";
|
|
sha256 = "0cpna0nxcd1dw3nnzli36nf9zj28d2g9jf5y0zl9j18lvanvniha";
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = if withGui then "bitcoin" else "bitcoind";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz"
|
|
"https://bitcoin.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz"
|
|
];
|
|
sha256 = "26748bf49d6d6b4014d0fedccac46bf2bcca42e9d34b3acfd9e3467c415acc05";
|
|
};
|
|
|
|
nativeBuildInputs =
|
|
[ autoreconfHook pkg-config ]
|
|
++ optionals stdenv.isLinux [ util-linux ]
|
|
++ optionals stdenv.isDarwin [ hexdump ]
|
|
++ optionals (stdenv.isDarwin && stdenv.isAarch64) [ autoSignDarwinBinariesHook ]
|
|
++ optionals withGui [ wrapQtAppsHook ];
|
|
|
|
buildInputs = [ boost libevent miniupnpc zeromq zlib ]
|
|
++ optionals withWallet [ db48 sqlite ]
|
|
++ optionals withGui [ qrencode qtbase qttools ];
|
|
|
|
postInstall = optionalString withGui ''
|
|
install -Dm644 ${desktop} $out/share/applications/bitcoin-qt.desktop
|
|
substituteInPlace $out/share/applications/bitcoin-qt.desktop --replace "Icon=bitcoin128" "Icon=bitcoin"
|
|
install -Dm644 share/pixmaps/bitcoin256.png $out/share/pixmaps/bitcoin.png
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
"--disable-bench"
|
|
] ++ optionals (!doCheck) [
|
|
"--disable-tests"
|
|
"--disable-gui-tests"
|
|
] ++ optionals (!withWallet) [
|
|
"--disable-wallet"
|
|
] ++ optionals withGui [
|
|
"--with-gui=qt5"
|
|
"--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin"
|
|
];
|
|
|
|
# fix "Killed: 9 test/test_bitcoin"
|
|
# https://github.com/NixOS/nixpkgs/issues/179474
|
|
hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "fortify" "stackprotector" ];
|
|
|
|
checkInputs = [ python3 ];
|
|
|
|
doCheck = true;
|
|
|
|
checkFlags =
|
|
[ "LC_ALL=en_US.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}";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.tests = {
|
|
smoke-test = nixosTests.bitcoind;
|
|
};
|
|
|
|
meta = {
|
|
description = "Peer-to-peer electronic cash system";
|
|
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://bitcoin.org/en/";
|
|
downloadPage = "https://bitcoincore.org/bin/bitcoin-core-${version}/";
|
|
changelog = "https://bitcoincore.org/en/releases/${version}/";
|
|
maintainers = with maintainers; [ prusnak roconnor ];
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|