nixpkgs/pkgs/applications/altcoins/monero/default.nix

54 lines
1.3 KiB
Nix
Raw Normal View History

2018-05-09 09:20:38 +00:00
{ stdenv, fetchFromGitHub, fetchpatch
, cmake, pkgconfig, git
2018-03-31 02:07:28 +00:00
, boost, miniupnpc, openssl, unbound, cppzmq
, zeromq, pcsclite, readline
2018-04-04 19:33:45 +00:00
, CoreData, IOKit, PCSC
2018-01-26 22:17:38 +00:00
}:
2018-03-31 02:07:28 +00:00
assert stdenv.isDarwin -> IOKit != null;
with stdenv.lib;
2018-01-26 22:17:38 +00:00
stdenv.mkDerivation rec {
name = "monero-${version}";
2018-03-28 04:53:07 +00:00
version = "0.12.0.0";
2018-01-26 22:17:38 +00:00
src = fetchFromGitHub {
owner = "monero-project";
repo = "monero";
rev = "v${version}";
2018-03-28 04:53:07 +00:00
sha256 = "1lc9mkrl1m8mdbvj88y8y5rv44vinxf7dyv221ndmw5c5gs5zfgk";
2018-01-26 22:17:38 +00:00
};
2018-03-28 04:53:07 +00:00
nativeBuildInputs = [ cmake pkgconfig git ];
2018-01-26 22:17:38 +00:00
2018-05-09 09:20:38 +00:00
patches = [
# fix daemon crash, remove with 0.12.1.0 update
(fetchpatch {
url = "https://github.com/monero-project/monero/commit/08343ab.diff";
sha256 = "0f1snrl2mk2czwk1ysympzr8ismjx39fcqgy13276vcmw0cfqi83";
})
];
2018-03-31 02:07:28 +00:00
buildInputs = [
boost miniupnpc openssl unbound
cppzmq zeromq pcsclite readline
2018-04-04 19:33:45 +00:00
] ++ optionals stdenv.isDarwin [ IOKit CoreData PCSC ];
2018-01-26 22:17:38 +00:00
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Release"
"-DBUILD_GUI_DEPS=ON"
2018-03-28 04:53:07 +00:00
"-DReadline_ROOT_DIR=${readline.dev}"
2018-01-26 22:17:38 +00:00
];
2018-03-28 04:53:07 +00:00
hardeningDisable = [ "fortify" ];
2018-01-26 22:17:38 +00:00
2018-03-31 02:07:28 +00:00
meta = {
2018-01-26 22:17:38 +00:00
description = "Private, secure, untraceable currency";
homepage = https://getmonero.org/;
license = licenses.bsd3;
platforms = platforms.all;
2018-03-31 02:07:28 +00:00
maintainers = with maintainers; [ ehmry rnhmjoj ];
2018-01-26 22:17:38 +00:00
};
}