69 lines
1.8 KiB
Nix
69 lines
1.8 KiB
Nix
|
{ lib, stdenv, fetchFromGitHub
|
||
|
, fetchpatch
|
||
|
, cmake, pkg-config, wrapQtAppsHook, boost, libGL
|
||
|
, qtbase, python3 }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
|
||
|
pname = "nano-wallet";
|
||
|
version = "25.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "nanocurrency";
|
||
|
repo = "nano-node";
|
||
|
rev = "V${version}";
|
||
|
fetchSubmodules = true;
|
||
|
hash = "sha256-YvYEXHC8kxviZLQwINs+pS61wITSfqfrrPmlR+zNRoE=";
|
||
|
};
|
||
|
|
||
|
patches = [
|
||
|
# Fix gcc-13 build failure due to missing <cstdint> includes.
|
||
|
(fetchpatch {
|
||
|
name = "gcc-13.patch";
|
||
|
url = "https://github.com/facebook/rocksdb/commit/88edfbfb5e1cac228f7cc31fbec24bb637fe54b1.patch";
|
||
|
stripLen = 1;
|
||
|
extraPrefix = "submodules/rocksdb/";
|
||
|
hash = "sha256-HhlIYyPzIZFuyzHTUPz3bXgXiaFSQ8pVrLLMzegjTgE=";
|
||
|
})
|
||
|
];
|
||
|
|
||
|
cmakeFlags = let
|
||
|
options = {
|
||
|
PYTHON_EXECUTABLE = "${python3.interpreter}";
|
||
|
NANO_SHARED_BOOST = "ON";
|
||
|
BOOST_ROOT = boost;
|
||
|
RAIBLOCKS_GUI = "ON";
|
||
|
RAIBLOCKS_TEST = "ON";
|
||
|
Qt5_DIR = "${qtbase.dev}/lib/cmake/Qt5";
|
||
|
Qt5Core_DIR = "${qtbase.dev}/lib/cmake/Qt5Core";
|
||
|
Qt5Gui_INCLUDE_DIRS = "${qtbase.dev}/include/QtGui";
|
||
|
Qt5Widgets_INCLUDE_DIRS = "${qtbase.dev}/include/QtWidgets";
|
||
|
};
|
||
|
optionToFlag = name: value: "-D${name}=${value}";
|
||
|
in lib.mapAttrsToList optionToFlag options;
|
||
|
|
||
|
nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
|
||
|
buildInputs = [ boost libGL qtbase ];
|
||
|
|
||
|
strictDeps = true;
|
||
|
|
||
|
makeFlags = [ "nano_wallet" ];
|
||
|
|
||
|
checkPhase = ''
|
||
|
runHook preCheck
|
||
|
./core_test
|
||
|
runHook postCheck
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "Wallet for Nano cryptocurrency";
|
||
|
homepage = "https://nano.org/en/wallet/";
|
||
|
license = lib.licenses.bsd2;
|
||
|
# Fails on Darwin. See:
|
||
|
# https://github.com/NixOS/nixpkgs/pull/39295#issuecomment-386800962
|
||
|
platforms = lib.platforms.linux;
|
||
|
maintainers = with lib.maintainers; [ jluttine ];
|
||
|
};
|
||
|
|
||
|
}
|