2018-01-08 17:29:43 -08:00
|
|
|
{ callPackage, boost155, boost164, openssl_1_1_0, haskellPackages, darwin, libsForQt5, miniupnpc_2, python3 }:
|
2014-11-30 05:13:47 -08:00
|
|
|
|
|
|
|
rec {
|
|
|
|
|
2017-12-22 13:08:31 -08:00
|
|
|
aeon = callPackage ./aeon { };
|
|
|
|
|
2018-01-08 17:29:43 -08:00
|
|
|
bitcoin = libsForQt5.callPackage ./bitcoin.nix { boost = boost164; miniupnpc = miniupnpc_2; withGui = true; };
|
|
|
|
bitcoind = callPackage ./bitcoin.nix { boost = boost164; miniupnpc = miniupnpc_2; withGui = false; };
|
2014-11-30 05:13:47 -08:00
|
|
|
|
2017-10-03 15:48:58 -07:00
|
|
|
bitcoin-abc = libsForQt5.callPackage ./bitcoin-abc.nix { withGui = true; };
|
2017-09-27 08:32:12 -07:00
|
|
|
bitcoind-abc = callPackage ./bitcoin-abc.nix { withGui = false; };
|
|
|
|
|
2017-03-26 23:33:41 -07:00
|
|
|
bitcoin-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = true; };
|
|
|
|
bitcoind-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = false; };
|
|
|
|
|
2017-10-03 15:48:58 -07:00
|
|
|
bitcoin-classic = libsForQt5.callPackage ./bitcoin-classic.nix { withGui = true; };
|
2017-09-11 09:14:16 -07:00
|
|
|
bitcoind-classic = callPackage ./bitcoin-classic.nix { withGui = false; };
|
2016-02-27 04:44:45 -08:00
|
|
|
|
2015-08-19 18:38:10 -07:00
|
|
|
bitcoin-xt = callPackage ./bitcoin-xt.nix { withGui = true; };
|
|
|
|
bitcoind-xt = callPackage ./bitcoin-xt.nix { withGui = false; };
|
|
|
|
|
2017-08-25 09:52:31 -07:00
|
|
|
btc1 = callPackage ./btc1.nix { withGui = true; };
|
|
|
|
btc1d = callPackage ./btc1.nix { withGui = false; };
|
|
|
|
|
2017-12-09 12:53:04 -08:00
|
|
|
cryptop = python3.pkgs.callPackage ./cryptop { };
|
|
|
|
|
2015-11-11 01:31:26 -08:00
|
|
|
dashpay = callPackage ./dashpay.nix { };
|
2014-11-30 05:13:47 -08:00
|
|
|
|
|
|
|
dogecoin = callPackage ./dogecoin.nix { withGui = true; };
|
|
|
|
dogecoind = callPackage ./dogecoin.nix { withGui = false; };
|
|
|
|
|
2018-01-15 10:52:22 -08:00
|
|
|
ethsign = callPackage ./ethsign { };
|
|
|
|
|
2017-09-11 07:57:45 -07:00
|
|
|
freicoin = callPackage ./freicoin.nix { boost = boost155; };
|
2017-10-02 19:13:30 -07:00
|
|
|
go-ethereum = callPackage ./go-ethereum.nix {
|
|
|
|
inherit (darwin) libobjc;
|
|
|
|
inherit (darwin.apple_sdk.frameworks) IOKit;
|
|
|
|
};
|
2017-06-13 12:43:33 -07:00
|
|
|
go-ethereum-classic = callPackage ./go-ethereum-classic { };
|
2016-07-20 16:33:39 -07:00
|
|
|
|
2014-11-30 05:13:47 -08:00
|
|
|
litecoin = callPackage ./litecoin.nix { withGui = true; };
|
|
|
|
litecoind = callPackage ./litecoin.nix { withGui = false; };
|
|
|
|
|
2014-12-20 08:56:21 -08:00
|
|
|
memorycoin = callPackage ./memorycoin.nix { withGui = true; };
|
|
|
|
memorycoind = callPackage ./memorycoin.nix { withGui = false; };
|
|
|
|
|
2017-09-11 12:13:46 -07:00
|
|
|
namecoin = callPackage ./namecoin.nix { withGui = true; };
|
|
|
|
namecoind = callPackage ./namecoin.nix { withGui = false; };
|
2015-04-07 07:01:01 -07:00
|
|
|
|
2016-08-17 12:38:41 -07:00
|
|
|
ethabi = callPackage ./ethabi.nix { };
|
2017-04-10 21:33:16 -07:00
|
|
|
ethrun = callPackage ./ethrun.nix { };
|
2017-05-12 06:04:21 -07:00
|
|
|
seth = callPackage ./seth.nix { };
|
2017-06-15 04:46:26 -07:00
|
|
|
dapp = callPackage ./dapp.nix { };
|
2016-08-17 12:38:41 -07:00
|
|
|
|
2017-09-21 21:50:11 -07:00
|
|
|
hevm = (haskellPackages.callPackage ./hevm.nix {});
|
2017-07-05 10:24:09 -07:00
|
|
|
|
2015-04-07 07:01:01 -07:00
|
|
|
primecoin = callPackage ./primecoin.nix { withGui = true; };
|
|
|
|
primecoind = callPackage ./primecoin.nix { withGui = false; };
|
|
|
|
|
2017-01-02 22:41:23 -08:00
|
|
|
stellar-core = callPackage ./stellar-core.nix { };
|
2017-03-17 02:53:11 -07:00
|
|
|
|
|
|
|
zcash = callPackage ./zcash {
|
|
|
|
withGui = false;
|
2017-09-11 07:57:45 -07:00
|
|
|
openssl = openssl_1_1_0;
|
2017-03-17 02:53:11 -07:00
|
|
|
};
|
2014-11-30 05:13:47 -08:00
|
|
|
}
|