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

43 lines
1007 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, pkgconfig, git, doxygen, graphviz
, boost, miniupnpc, openssl, unbound, cppzmq
2018-11-18 18:35:43 -08:00
, zeromq, pcsclite, readline, libsodium
}:
2017-12-22 13:08:31 -08:00
let
2018-11-18 18:35:43 -08:00
version = "0.12.6.0";
2017-12-22 13:08:31 -08:00
in
stdenv.mkDerivation {
name = "aeon-${version}";
src = fetchFromGitHub {
owner = "aeonix";
repo = "aeon";
2018-11-18 18:35:43 -08:00
rev = "v${version}-aeon";
fetchSubmodules = true;
2018-11-18 18:35:43 -08:00
sha256 = "19r1snqwixccl27jwv6i0s86qck036pdlhyhl891bbiyvi55h14n";
2017-12-22 13:08:31 -08:00
};
nativeBuildInputs = [ cmake pkgconfig git doxygen graphviz ];
2017-12-22 13:08:31 -08:00
buildInputs = [
boost miniupnpc openssl unbound
2018-11-18 18:35:43 -08:00
cppzmq zeromq pcsclite readline libsodium
];
2017-12-22 13:08:31 -08:00
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Release"
"-DBUILD_GUI_DEPS=ON"
"-DReadline_ROOT_DIR=${readline.dev}"
];
hardeningDisable = [ "fortify" ];
2017-12-22 13:08:31 -08:00
meta = with stdenv.lib; {
description = "Private, secure, untraceable currency";
homepage = http://www.aeon.cash/;
license = licenses.bsd3;
maintainers = [ maintainers.aij ];
platforms = [ "x86_64-linux" ];
};
}