17 stdenv.mkDerivation rec {
18 pname = "particl-core";
21 src = fetchFromGitHub {
23 repo = "particl-core";
25 sha256 = "sha256-jrIsErKeHP9CMUWsrD42RmfmApP7J091OLA5JNY0fe0=";
28 nativeBuildInputs = [ pkg-config autoreconfHook ];
29 buildInputs = [ openssl db48 boost zlib miniupnpc libevent zeromq unixtools.hexdump python3 ];
33 "--with-boost-libdir=${boost.out}/lib"
34 ] ++ lib.optionals (!doCheck) [
38 # Always check during Hydra builds
40 preCheck = "patchShebangs test";
41 enableParallelBuilding = true;
44 broken = (stdenv.isLinux && stdenv.isAarch64);
45 description = "Privacy-Focused Marketplace & Decentralized Application Platform";
47 An open source, decentralized privacy platform built for global person to person eCommerce.
48 RPC daemon and CLI client only.
50 homepage = "https://particl.io/";
51 maintainers = with maintainers; [ demyanrogozhin ];
52 license = licenses.mit;
53 platforms = platforms.unix;