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