2018-01-09 01:29:43 +00:00
|
|
|
{ callPackage, boost155, boost164, openssl_1_1_0, haskellPackages, darwin, libsForQt5, miniupnpc_2, python3 }:
|
2014-11-30 13:13:47 +00:00
|
|
|
|
|
|
|
rec {
|
|
|
|
|
2017-12-22 21:08:31 +00:00
|
|
|
aeon = callPackage ./aeon { };
|
|
|
|
|
2018-01-09 01:29:43 +00: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 13:13:47 +00:00
|
|
|
|
2017-10-03 23:48:58 +01:00
|
|
|
bitcoin-abc = libsForQt5.callPackage ./bitcoin-abc.nix { withGui = true; };
|
2017-09-27 16:32:12 +01:00
|
|
|
bitcoind-abc = callPackage ./bitcoin-abc.nix { withGui = false; };
|
|
|
|
|
2017-03-27 07:33:41 +01:00
|
|
|
bitcoin-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = true; };
|
|
|
|
bitcoind-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = false; };
|
|
|
|
|
2017-10-03 23:48:58 +01:00
|
|
|
bitcoin-classic = libsForQt5.callPackage ./bitcoin-classic.nix { withGui = true; };
|
2017-09-11 17:14:16 +01:00
|
|
|
bitcoind-classic = callPackage ./bitcoin-classic.nix { withGui = false; };
|
2016-02-27 12:44:45 +00:00
|
|
|
|
2015-08-20 02:38:10 +01:00
|
|
|
bitcoin-xt = callPackage ./bitcoin-xt.nix { withGui = true; };
|
|
|
|
bitcoind-xt = callPackage ./bitcoin-xt.nix { withGui = false; };
|
|
|
|
|
2017-08-25 17:52:31 +01:00
|
|
|
btc1 = callPackage ./btc1.nix { withGui = true; };
|
|
|
|
btc1d = callPackage ./btc1.nix { withGui = false; };
|
|
|
|
|
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-02-10 19:40:57 +00:00
|
|
|
dero = callPackage ./dero.nix { };
|
|
|
|
|
2014-11-30 13:13:47 +00:00
|
|
|
dogecoin = callPackage ./dogecoin.nix { withGui = true; };
|
|
|
|
dogecoind = callPackage ./dogecoin.nix { withGui = false; };
|
|
|
|
|
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 {
|
|
|
|
inherit (darwin) libobjc;
|
|
|
|
inherit (darwin.apple_sdk.frameworks) IOKit;
|
|
|
|
};
|
2017-06-13 20:43:33 +01:00
|
|
|
go-ethereum-classic = callPackage ./go-ethereum-classic { };
|
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; };
|
|
|
|
|
2014-12-20 16:56:21 +00:00
|
|
|
memorycoin = callPackage ./memorycoin.nix { withGui = true; };
|
|
|
|
memorycoind = callPackage ./memorycoin.nix { withGui = false; };
|
|
|
|
|
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
|
|
|
|
2015-04-07 15:01:01 +01:00
|
|
|
primecoin = callPackage ./primecoin.nix { withGui = true; };
|
|
|
|
primecoind = callPackage ./primecoin.nix { withGui = false; };
|
|
|
|
|
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
|
|
|
};
|
2014-11-30 13:13:47 +00:00
|
|
|
}
|