mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-25 06:13:54 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
65 lines
1.6 KiB
Nix
65 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, autoreconfHook
|
|
, boost
|
|
, db48
|
|
, fetchFromGitHub
|
|
, fetchpatch2
|
|
, libevent
|
|
, miniupnpc
|
|
, openssl
|
|
, pkg-config
|
|
, zeromq
|
|
, zlib
|
|
, unixtools
|
|
, python3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "particl-core";
|
|
version = "23.2.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "particl";
|
|
repo = "particl-core";
|
|
rev = "v${version}";
|
|
hash = "sha256-RxkLt+7u+r5jNwEWiArTUpZ8ykYwWtvIDFXTSKhGN/w=";
|
|
};
|
|
|
|
patches = [
|
|
# upnp: fix build with miniupnpc 2.2.8
|
|
(fetchpatch2 {
|
|
url = "https://github.com/bitcoin/bitcoin/commit/8acdf66540834b9f9cf28f16d389e8b6a48516d5.patch?full_index=1";
|
|
hash = "sha256-oDvHUvwAEp0LJCf6QBESn38Bu359TcPpLhvuLX3sm6M=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
|
buildInputs = [ openssl db48 boost zlib miniupnpc libevent zeromq unixtools.hexdump python3 ];
|
|
|
|
configureFlags = [
|
|
"--disable-bench"
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
] ++ lib.optionals (!doCheck) [
|
|
"--enable-tests=no"
|
|
];
|
|
|
|
# Always check during Hydra builds
|
|
doCheck = true;
|
|
preCheck = "patchShebangs test";
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64);
|
|
description = "Privacy-Focused Marketplace & Decentralized Application Platform";
|
|
longDescription = ''
|
|
An open source, decentralized privacy platform built for global person to person eCommerce.
|
|
RPC daemon and CLI client only.
|
|
'';
|
|
homepage = "https://particl.io/";
|
|
maintainers = with maintainers; [ demyanrogozhin ];
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|