forked from mirrors/nixpkgs
monero: fix daemon crash
This commit is contained in:
parent
1d55c211cb
commit
f8f65f837f
|
@ -1,4 +1,5 @@
|
||||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, git
|
{ stdenv, fetchFromGitHub, fetchpatch
|
||||||
|
, cmake, pkgconfig, git
|
||||||
, boost, miniupnpc, openssl, unbound, cppzmq
|
, boost, miniupnpc, openssl, unbound, cppzmq
|
||||||
, zeromq, pcsclite, readline
|
, zeromq, pcsclite, readline
|
||||||
, CoreData, IOKit, PCSC
|
, CoreData, IOKit, PCSC
|
||||||
|
@ -21,6 +22,14 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig git ];
|
nativeBuildInputs = [ cmake pkgconfig git ];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# fix daemon crash, remove with 0.12.1.0 update
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/monero-project/monero/commit/08343ab.diff";
|
||||||
|
sha256 = "0f1snrl2mk2czwk1ysympzr8ismjx39fcqgy13276vcmw0cfqi83";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
boost miniupnpc openssl unbound
|
boost miniupnpc openssl unbound
|
||||||
cppzmq zeromq pcsclite readline
|
cppzmq zeromq pcsclite readline
|
||||||
|
|
Loading…
Reference in a new issue