Merge pull request #32988 from aij/aeon

altcoins.aeon: init at 0.9.14.0

Changed files
+37
lib
pkgs
applications
altcoins
+1
lib/maintainers.nix
···
afranchuk = "Alex Franchuk <alex.franchuk@gmail.com>";
aherrmann = "Andreas Herrmann <andreash87@gmx.ch>";
ahmedtd = "Taahir Ahmed <ahmed.taahir@gmail.com>";
+
aij = "Ivan Jager <aij+git@mrph.org>";
ak = "Alexander Kjeldaas <ak@formalprivacy.com>";
akaWolf = "Artjom Vejsel <akawolf0@gmail.com>";
akc = "Anders Claesson <akc@akc.is>";
+34
pkgs/applications/altcoins/aeon/default.nix
···
+
{ stdenv, fetchFromGitHub, cmake, boost, miniupnpc, openssl, pkgconfig, unbound }:
+
+
let
+
version = "0.9.14.0";
+
in
+
stdenv.mkDerivation {
+
name = "aeon-${version}";
+
+
src = fetchFromGitHub {
+
owner = "aeonix";
+
repo = "aeon";
+
rev = "v${version}";
+
sha256 = "0pl9nfhihj0wsdgvvpv5f14k4m2ikk8s3xw6nd8ymbnpxfzyxynr";
+
};
+
+
nativeBuildInputs = [ cmake pkgconfig ];
+
+
buildInputs = [ boost miniupnpc openssl unbound ];
+
+
installPhase = ''
+
install -D src/aeond "$out/bin/aeond"
+
install src/simpleminer "$out/bin/aeon-simpleminer"
+
install src/simplewallet "$out/bin/aeon-simplewallet"
+
install src/connectivity_tool "$out/bin/aeon-connectivity-tool"
+
'';
+
+
meta = with stdenv.lib; {
+
description = "Private, secure, untraceable currency";
+
homepage = http://www.aeon.cash/;
+
license = licenses.bsd3;
+
maintainers = [ maintainers.aij ];
+
platforms = [ "x86_64-linux" ];
+
};
+
}
+2
pkgs/applications/altcoins/default.nix
···
rec {
+
aeon = callPackage ./aeon { };
+
bitcoin = libsForQt5.callPackage ./bitcoin.nix { miniupnpc = miniupnpc_2; withGui = true; };
bitcoind = callPackage ./bitcoin.nix { miniupnpc = miniupnpc_2; withGui = false; };