2019-06-16 19:59:06 +00:00
|
|
|
{ callPackage, boost155, boost165, openssl_1_1, darwin, libsForQt5, libsForQt59, miniupnpc_2, python3, buildGo110Package }:
|
2014-11-30 11:13:47 -02:00
|
|
|
|
|
|
|
|
rec {
|
|
|
|
|
|
2017-12-22 15:08:31 -06:00
|
|
|
aeon = callPackage ./aeon { };
|
|
|
|
|
|
2018-02-28 09:16:26 -05:00
|
|
|
bitcoin = libsForQt5.callPackage ./bitcoin.nix { miniupnpc = miniupnpc_2; withGui = true; };
|
|
|
|
|
bitcoind = callPackage ./bitcoin.nix { miniupnpc = miniupnpc_2; withGui = false; };
|
2018-06-20 19:48:12 -07:00
|
|
|
clightning = callPackage ./clightning.nix { };
|
2014-11-30 11:13:47 -02:00
|
|
|
|
2018-03-08 20:49:52 +01:00
|
|
|
bitcoin-abc = libsForQt5.callPackage ./bitcoin-abc.nix { boost = boost165; withGui = true; };
|
|
|
|
|
bitcoind-abc = callPackage ./bitcoin-abc.nix { boost = boost165; withGui = false; };
|
2017-09-27 17:32:12 +02:00
|
|
|
|
2018-04-21 20:06:36 +01:00
|
|
|
bitcoin-unlimited = callPackage ./bitcoin-unlimited.nix {
|
|
|
|
|
inherit (darwin.apple_sdk.frameworks) Foundation ApplicationServices AppKit;
|
|
|
|
|
withGui = true;
|
|
|
|
|
};
|
|
|
|
|
bitcoind-unlimited = callPackage ./bitcoin-unlimited.nix {
|
|
|
|
|
inherit (darwin.apple_sdk.frameworks) Foundation ApplicationServices AppKit;
|
|
|
|
|
withGui = false;
|
|
|
|
|
};
|
2017-03-26 23:33:41 -07:00
|
|
|
|
2018-03-08 20:59:40 +01:00
|
|
|
bitcoin-classic = libsForQt5.callPackage ./bitcoin-classic.nix { boost = boost165; withGui = true; };
|
|
|
|
|
bitcoind-classic = callPackage ./bitcoin-classic.nix { boost = boost165; withGui = false; };
|
2016-02-27 13:44:45 +01:00
|
|
|
|
2018-04-21 20:06:36 +01:00
|
|
|
bitcoin-xt = callPackage ./bitcoin-xt.nix {
|
|
|
|
|
inherit (darwin.apple_sdk.frameworks) Foundation ApplicationServices AppKit;
|
|
|
|
|
boost = boost165; withGui = true;
|
|
|
|
|
};
|
|
|
|
|
bitcoind-xt = callPackage ./bitcoin-xt.nix {
|
|
|
|
|
inherit (darwin.apple_sdk.frameworks) Foundation ApplicationServices AppKit;
|
|
|
|
|
boost = boost165; withGui = false;
|
|
|
|
|
};
|
2015-08-19 18:38:10 -07:00
|
|
|
|
2018-09-09 14:54:16 +02:00
|
|
|
btc1 = callPackage ./btc1.nix {
|
|
|
|
|
inherit (darwin.apple_sdk.frameworks) AppKit;
|
|
|
|
|
boost = boost165;
|
|
|
|
|
};
|
|
|
|
|
btc1d = btc1.override { withGui = false; };
|
2017-08-26 00:52:31 +08:00
|
|
|
|
2017-12-09 20:53:04 +00:00
|
|
|
cryptop = python3.pkgs.callPackage ./cryptop { };
|
|
|
|
|
|
2015-11-11 10:31:26 +01:00
|
|
|
dashpay = callPackage ./dashpay.nix { };
|
2014-11-30 11:13:47 -02:00
|
|
|
|
2018-03-03 21:40:01 +01:00
|
|
|
dcrd = callPackage ./dcrd.nix { };
|
|
|
|
|
dcrwallet = callPackage ./dcrwallet.nix { };
|
|
|
|
|
|
2018-12-09 15:52:19 -05:00
|
|
|
dero = callPackage ./dero.nix { boost = boost165; };
|
2018-02-10 20:40:57 +01:00
|
|
|
|
2018-03-10 02:34:39 +01:00
|
|
|
dogecoin = callPackage ./dogecoin.nix { boost = boost165; withGui = true; };
|
|
|
|
|
dogecoind = callPackage ./dogecoin.nix { boost = boost165; withGui = false; };
|
2014-11-30 11:13:47 -02:00
|
|
|
|
2018-01-16 02:52:22 +08:00
|
|
|
|
2017-09-11 15:57:45 +01:00
|
|
|
freicoin = callPackage ./freicoin.nix { boost = boost155; };
|
2017-10-03 10:13:30 +08:00
|
|
|
go-ethereum = callPackage ./go-ethereum.nix {
|
|
|
|
|
inherit (darwin) libobjc;
|
|
|
|
|
inherit (darwin.apple_sdk.frameworks) IOKit;
|
|
|
|
|
};
|
2018-08-26 22:27:41 +08:00
|
|
|
go-ethereum-classic = callPackage ./go-ethereum-classic {
|
|
|
|
|
buildGoPackage = buildGo110Package;
|
|
|
|
|
};
|
2016-07-20 19:33:39 -04:00
|
|
|
|
2018-09-12 21:50:33 +02:00
|
|
|
litecoin = callPackage ./litecoin.nix {
|
|
|
|
|
inherit (darwin.apple_sdk.frameworks) AppKit;
|
|
|
|
|
};
|
|
|
|
|
litecoind = litecoin.override { withGui = false; };
|
2014-11-30 11:13:47 -02:00
|
|
|
|
2019-07-22 17:19:15 +02:00
|
|
|
lnd = callPackage ./lnd.nix { };
|
|
|
|
|
|
2018-12-09 16:25:37 -05:00
|
|
|
masari = callPackage ./masari.nix { boost = boost165; };
|
2018-03-21 17:05:40 +01:00
|
|
|
|
2018-03-10 11:01:53 +01:00
|
|
|
memorycoin = callPackage ./memorycoin.nix { boost = boost165; withGui = true; };
|
|
|
|
|
memorycoind = callPackage ./memorycoin.nix { boost = boost165; withGui = false; };
|
2014-12-20 14:56:21 -02:00
|
|
|
|
2018-04-09 14:41:25 -07:00
|
|
|
mist = callPackage ./mist.nix { };
|
|
|
|
|
|
2017-09-11 21:13:46 +02:00
|
|
|
namecoin = callPackage ./namecoin.nix { withGui = true; };
|
|
|
|
|
namecoind = callPackage ./namecoin.nix { withGui = false; };
|
2015-04-07 11:01:01 -03:00
|
|
|
|
2019-02-11 00:31:32 +01:00
|
|
|
pivx = libsForQt59.callPackage ./pivx.nix { withGui = true; };
|
|
|
|
|
pivxd = callPackage ./pivx.nix { withGui = false; };
|
|
|
|
|
|
2016-08-17 21:38:41 +02:00
|
|
|
ethabi = callPackage ./ethabi.nix { };
|
2017-07-05 19:24:09 +02:00
|
|
|
|
2017-01-03 01:41:23 -05:00
|
|
|
stellar-core = callPackage ./stellar-core.nix { };
|
2017-03-17 12:53:11 +03:00
|
|
|
|
2018-12-09 16:25:48 -05:00
|
|
|
sumokoin = callPackage ./sumokoin.nix { boost = boost165; };
|
2018-02-06 04:25:37 +01:00
|
|
|
|
2019-06-04 08:02:52 +08:00
|
|
|
wownero = callPackage ./wownero.nix {};
|
2018-11-11 14:40:25 +08:00
|
|
|
|
2017-03-17 12:53:11 +03:00
|
|
|
zcash = callPackage ./zcash {
|
|
|
|
|
withGui = false;
|
2018-09-12 23:56:08 +00:00
|
|
|
openssl = openssl_1_1;
|
2017-03-17 12:53:11 +03:00
|
|
|
};
|
2018-02-21 12:11:47 +03:00
|
|
|
|
|
|
|
|
parity = callPackage ./parity { };
|
2018-08-03 17:54:30 +03:00
|
|
|
parity-beta = callPackage ./parity/beta.nix { };
|
2018-05-05 09:16:19 +08:00
|
|
|
parity-ui = callPackage ./parity-ui { };
|
2018-05-05 00:45:24 +02:00
|
|
|
|
2018-12-05 17:10:31 +03:00
|
|
|
polkadot = callPackage ./polkadot { };
|
|
|
|
|
|
2018-10-27 23:50:40 +02:00
|
|
|
particl-core = callPackage ./particl/particl-core.nix { miniupnpc = miniupnpc_2; };
|
2014-11-30 11:13:47 -02:00
|
|
|
}
|