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