tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
altcoins.sumokoin: init at 0.2.0.0
Franz Pletz
8 years ago
e05a05e0
0905e5e2
+37
2 changed files
expand all
collapse all
unified
split
pkgs
applications
altcoins
default.nix
sumokoin.nix
+2
pkgs/applications/altcoins/default.nix
···
59
59
60
60
stellar-core = callPackage ./stellar-core.nix { };
61
61
62
62
+
sumokoin = callPackage ./sumokoin.nix { };
63
63
+
62
64
zcash = callPackage ./zcash {
63
65
withGui = false;
64
66
openssl = openssl_1_1_0;
+35
pkgs/applications/altcoins/sumokoin.nix
···
1
1
+
{ lib, stdenv, fetchFromGitHub, cmake, unbound, openssl, boost
2
2
+
, libunwind, lmdb, miniupnpc }:
3
3
+
4
4
+
stdenv.mkDerivation rec {
5
5
+
name = "sumokoin-${version}";
6
6
+
version = "0.2.0.0";
7
7
+
8
8
+
src = fetchFromGitHub {
9
9
+
owner = "sumoprojects";
10
10
+
repo = "sumokoin";
11
11
+
rev = "v${version}";
12
12
+
sha256 = "0ndgcawhxh3qb3llrrilrwzhs36qpxv7f53rxgcansbff9b3za6n";
13
13
+
};
14
14
+
15
15
+
nativeBuildInputs = [ cmake ];
16
16
+
buildInputs = [ unbound openssl boost libunwind lmdb miniupnpc ];
17
17
+
18
18
+
postPatch = ''
19
19
+
substituteInPlace src/blockchain_db/lmdb/db_lmdb.cpp --replace mdb_size_t size_t
20
20
+
'';
21
21
+
22
22
+
cmakeFlags = [
23
23
+
"-DLMDB_INCLUDE=${lmdb}/include"
24
24
+
];
25
25
+
26
26
+
enableParallelBuilding = true;
27
27
+
28
28
+
meta = with lib; {
29
29
+
description = "Sumokoin is a fork of Monero and a truely fungible cryptocurrency";
30
30
+
homepage = "https://www.sumokoin.org/";
31
31
+
license = licenses.bsd3;
32
32
+
maintainers = with maintainers; [ fpletz ];
33
33
+
platforms = platforms.linux;
34
34
+
};
35
35
+
}