particl-core: init at 0.16.0.4
Particl is privacy-focused altcoin build for p2p eCommerce. Added Particl Core - daemon used to run staking node.
This commit is contained in:
parent
cd960b965f
commit
fe24a0fa38
|
@ -998,6 +998,11 @@
|
||||||
github = "demin-dmitriy";
|
github = "demin-dmitriy";
|
||||||
name = "Dmitriy Demin";
|
name = "Dmitriy Demin";
|
||||||
};
|
};
|
||||||
|
demyanrogozhin = {
|
||||||
|
email = "demyan.rogozhin@gmail.com";
|
||||||
|
github = "demyanrogozhin";
|
||||||
|
name = "Demyan Rogozhin";
|
||||||
|
};
|
||||||
derchris = {
|
derchris = {
|
||||||
email = "derchris@me.com";
|
email = "derchris@me.com";
|
||||||
github = "derchrisuk";
|
github = "derchrisuk";
|
||||||
|
|
|
@ -87,4 +87,6 @@ rec {
|
||||||
parity = callPackage ./parity { };
|
parity = callPackage ./parity { };
|
||||||
parity-beta = callPackage ./parity/beta.nix { };
|
parity-beta = callPackage ./parity/beta.nix { };
|
||||||
parity-ui = callPackage ./parity-ui { };
|
parity-ui = callPackage ./parity-ui { };
|
||||||
|
|
||||||
|
particl-core = callPackage ./particl/particl-core.nix { boost = boost165; miniupnpc = miniupnpc_2; withGui = false; };
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,47 @@
|
||||||
|
{ stdenv
|
||||||
|
, autoconf
|
||||||
|
, automake
|
||||||
|
, autoreconfHook
|
||||||
|
, boost
|
||||||
|
, db48
|
||||||
|
, fetchurl
|
||||||
|
, libevent
|
||||||
|
, libtool
|
||||||
|
, miniupnpc
|
||||||
|
, openssl
|
||||||
|
, pkgconfig
|
||||||
|
, utillinux
|
||||||
|
, zeromq
|
||||||
|
, zlib
|
||||||
|
, withGui
|
||||||
|
}:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "particl-core-${version}";
|
||||||
|
version = "0.16.0.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/particl/particl-core/archive/v${version}.tar.gz";
|
||||||
|
sha256 = "1yy8pw13rn821jpi1zvzwi3ipxi1bgfxv8g6jz49qlbjzjmjcr68";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||||
|
buildInputs = [ openssl db48 boost zlib
|
||||||
|
miniupnpc libevent zeromq ]
|
||||||
|
++ optionals stdenv.isLinux [ utillinux ];
|
||||||
|
|
||||||
|
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Privacy-Focused Marketplace & Decentralized Application Platform";
|
||||||
|
longDescription= ''
|
||||||
|
An open source, decentralized privacy platform built for global person to person eCommerce.
|
||||||
|
'';
|
||||||
|
homepage = https://particl.io/;
|
||||||
|
maintainers = with maintainers; [ demyanrogozhin ];
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -14896,6 +14896,8 @@ with pkgs;
|
||||||
|
|
||||||
stellar-core = self.altcoins.stellar-core;
|
stellar-core = self.altcoins.stellar-core;
|
||||||
|
|
||||||
|
particl-core = self.altcoins.particl-core;
|
||||||
|
|
||||||
aumix = callPackage ../applications/audio/aumix {
|
aumix = callPackage ../applications/audio/aumix {
|
||||||
gtkGUI = false;
|
gtkGUI = false;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue