tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
altcoins.aeon: init at 0.9.14.0
Ivan Jager
8 years ago
36d01800
ea9b6770
+37
3 changed files
expand all
collapse all
unified
split
lib
maintainers.nix
pkgs
applications
altcoins
aeon
default.nix
default.nix
+1
lib/maintainers.nix
···
28
28
afranchuk = "Alex Franchuk <alex.franchuk@gmail.com>";
29
29
aherrmann = "Andreas Herrmann <andreash87@gmx.ch>";
30
30
ahmedtd = "Taahir Ahmed <ahmed.taahir@gmail.com>";
31
31
+
aij = "Ivan Jager <aij+git@mrph.org>";
31
32
ak = "Alexander Kjeldaas <ak@formalprivacy.com>";
32
33
akaWolf = "Artjom Vejsel <akawolf0@gmail.com>";
33
34
akc = "Anders Claesson <akc@akc.is>";
+34
pkgs/applications/altcoins/aeon/default.nix
···
1
1
+
{ stdenv, fetchFromGitHub, cmake, boost, miniupnpc, openssl, pkgconfig, unbound }:
2
2
+
3
3
+
let
4
4
+
version = "0.9.14.0";
5
5
+
in
6
6
+
stdenv.mkDerivation {
7
7
+
name = "aeon-${version}";
8
8
+
9
9
+
src = fetchFromGitHub {
10
10
+
owner = "aeonix";
11
11
+
repo = "aeon";
12
12
+
rev = "v${version}";
13
13
+
sha256 = "0pl9nfhihj0wsdgvvpv5f14k4m2ikk8s3xw6nd8ymbnpxfzyxynr";
14
14
+
};
15
15
+
16
16
+
nativeBuildInputs = [ cmake pkgconfig ];
17
17
+
18
18
+
buildInputs = [ boost miniupnpc openssl unbound ];
19
19
+
20
20
+
installPhase = ''
21
21
+
install -D src/aeond "$out/bin/aeond"
22
22
+
install src/simpleminer "$out/bin/aeon-simpleminer"
23
23
+
install src/simplewallet "$out/bin/aeon-simplewallet"
24
24
+
install src/connectivity_tool "$out/bin/aeon-connectivity-tool"
25
25
+
'';
26
26
+
27
27
+
meta = with stdenv.lib; {
28
28
+
description = "Private, secure, untraceable currency";
29
29
+
homepage = http://www.aeon.cash/;
30
30
+
license = licenses.bsd3;
31
31
+
maintainers = [ maintainers.aij ];
32
32
+
platforms = [ "x86_64-linux" ];
33
33
+
};
34
34
+
}
+2
pkgs/applications/altcoins/default.nix
···
2
2
3
3
rec {
4
4
5
5
+
aeon = callPackage ./aeon { };
6
6
+
5
7
bitcoin = libsForQt5.callPackage ./bitcoin.nix { miniupnpc = miniupnpc_2; withGui = true; };
6
8
bitcoind = callPackage ./bitcoin.nix { miniupnpc = miniupnpc_2; withGui = false; };
7
9