2018-08-26 16:27:41 +02:00
|
|
|
{ callPackage, boost155, boost165, openssl_1_1_0, haskellPackages, darwin, libsForQt5, miniupnpc_2, python3, buildGo110Package }:
|
2014-11-30 14:13:47 +01:00
|
|
|
|
|
|
|
rec {
|
|
|
|
|
2017-12-22 22:08:31 +01:00
|
|
|
aeon = callPackage ./aeon { };
|
|
|
|
|
2018-02-28 15:16:26 +01:00
|
|
|
bitcoin = libsForQt5.callPackage ./bitcoin.nix { miniupnpc = miniupnpc_2; withGui = true; };
|
|
|
|
bitcoind = callPackage ./bitcoin.nix { miniupnpc = miniupnpc_2; withGui = false; };
|
2018-06-21 04:48:12 +02:00
|
|
|
clightning = callPackage ./clightning.nix { };
|
2014-11-30 14:13:47 +01: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 21:06:36 +02: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-27 08:33:41 +02: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 21:06:36 +02: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-20 03:38:10 +02:00
|
|
|
|
2018-03-10 01:48:55 +01:00
|
|
|
btc1 = callPackage ./btc1.nix { boost = boost165; withGui = true; };
|
|
|
|
btc1d = callPackage ./btc1.nix { boost = boost165; withGui = false; };
|
2017-08-25 18:52:31 +02:00
|
|
|
|
2017-12-09 21:53:04 +01:00
|
|
|
cryptop = python3.pkgs.callPackage ./cryptop { };
|
|
|
|
|
2015-11-11 10:31:26 +01:00
|
|
|
dashpay = callPackage ./dashpay.nix { };
|
2014-11-30 14:13:47 +01:00
|
|
|
|
2018-03-03 21:40:01 +01:00
|
|
|
dcrd = callPackage ./dcrd.nix { };
|
|
|
|
dcrwallet = callPackage ./dcrwallet.nix { };
|
|
|
|
|
2018-02-10 20:40:57 +01:00
|
|
|
dero = callPackage ./dero.nix { };
|
|
|
|
|
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 14:13:47 +01:00
|
|
|
|
2018-01-15 19:52:22 +01:00
|
|
|
ethsign = callPackage ./ethsign { };
|
|
|
|
|
2017-09-11 16:57:45 +02:00
|
|
|
freicoin = callPackage ./freicoin.nix { boost = boost155; };
|
2017-10-03 04:13:30 +02:00
|
|
|
go-ethereum = callPackage ./go-ethereum.nix {
|
2018-08-26 16:27:41 +02:00
|
|
|
buildGoPackage = buildGo110Package;
|
2017-10-03 04:13:30 +02:00
|
|
|
inherit (darwin) libobjc;
|
|
|
|
inherit (darwin.apple_sdk.frameworks) IOKit;
|
|
|
|
};
|
2018-08-26 16:27:41 +02:00
|
|
|
go-ethereum-classic = callPackage ./go-ethereum-classic {
|
|
|
|
buildGoPackage = buildGo110Package;
|
|
|
|
};
|
2016-07-21 01:33:39 +02:00
|
|
|
|
2014-11-30 14:13:47 +01:00
|
|
|
litecoin = callPackage ./litecoin.nix { withGui = true; };
|
|
|
|
litecoind = callPackage ./litecoin.nix { withGui = false; };
|
|
|
|
|
2018-03-21 17:05:40 +01:00
|
|
|
masari = callPackage ./masari.nix { };
|
|
|
|
|
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 17:56:21 +01:00
|
|
|
|
2018-04-09 23:41:25 +02: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 16:01:01 +02:00
|
|
|
|
2016-08-17 21:38:41 +02:00
|
|
|
ethabi = callPackage ./ethabi.nix { };
|
2017-04-11 06:33:16 +02:00
|
|
|
ethrun = callPackage ./ethrun.nix { };
|
2017-05-12 15:04:21 +02:00
|
|
|
seth = callPackage ./seth.nix { };
|
2017-06-15 13:46:26 +02:00
|
|
|
dapp = callPackage ./dapp.nix { };
|
2016-08-17 21:38:41 +02:00
|
|
|
|
2017-09-22 06:50:11 +02:00
|
|
|
hevm = (haskellPackages.callPackage ./hevm.nix {});
|
2017-07-05 19:24:09 +02:00
|
|
|
|
2017-01-03 07:41:23 +01:00
|
|
|
stellar-core = callPackage ./stellar-core.nix { };
|
2017-03-17 10:53:11 +01:00
|
|
|
|
2018-02-06 04:25:37 +01:00
|
|
|
sumokoin = callPackage ./sumokoin.nix { };
|
|
|
|
|
2017-03-17 10:53:11 +01:00
|
|
|
zcash = callPackage ./zcash {
|
|
|
|
withGui = false;
|
2017-09-11 16:57:45 +02:00
|
|
|
openssl = openssl_1_1_0;
|
2017-03-17 10:53:11 +01:00
|
|
|
};
|
2018-02-21 10:11:47 +01:00
|
|
|
|
|
|
|
parity = callPackage ./parity { };
|
2018-08-03 16:54:30 +02:00
|
|
|
parity-beta = callPackage ./parity/beta.nix { };
|
2018-05-05 03:16:19 +02:00
|
|
|
parity-ui = callPackage ./parity-ui { };
|
2018-05-05 00:45:24 +02:00
|
|
|
|
2018-07-21 02:44:44 +02:00
|
|
|
particl-core = callPackage ./particl/particl-core.nix { boost = boost165; miniupnpc = miniupnpc_2; };
|
2014-11-30 14:13:47 +01:00
|
|
|
}
|