mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
57a813f3df
Add the Bitcoin Unlimited client to the altcoins directory, so that all sides of the Bitcoin scaling debate are represented.
41 lines
1.5 KiB
Nix
41 lines
1.5 KiB
Nix
{ callPackage, pkgs }:
|
|
|
|
rec {
|
|
|
|
bitcoin = callPackage ./bitcoin.nix { withGui = true; };
|
|
bitcoind = callPackage ./bitcoin.nix { withGui = false; };
|
|
|
|
bitcoin-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = true; };
|
|
bitcoind-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = false; };
|
|
|
|
bitcoin-classic = callPackage ./bitcoin-classic.nix { withGui = true; };
|
|
bitcoind-classic = callPackage ./bitcoin-classic.nix { withGui = false; };
|
|
|
|
bitcoin-xt = callPackage ./bitcoin-xt.nix { withGui = true; };
|
|
bitcoind-xt = callPackage ./bitcoin-xt.nix { withGui = false; };
|
|
|
|
dashpay = callPackage ./dashpay.nix { };
|
|
|
|
dogecoin = callPackage ./dogecoin.nix { withGui = true; };
|
|
dogecoind = callPackage ./dogecoin.nix { withGui = false; };
|
|
|
|
freicoin = callPackage ./freicoin.nix { boost = pkgs.boost155; };
|
|
go-ethereum = callPackage ./go-ethereum.nix { };
|
|
|
|
litecoin = callPackage ./litecoin.nix { withGui = true; };
|
|
litecoind = callPackage ./litecoin.nix { withGui = false; };
|
|
|
|
memorycoin = callPackage ./memorycoin.nix { withGui = true; };
|
|
memorycoind = callPackage ./memorycoin.nix { withGui = false; };
|
|
|
|
namecoin = callPackage ./namecoin.nix { inherit namecoind; };
|
|
namecoind = callPackage ./namecoind.nix { };
|
|
|
|
ethabi = callPackage ./ethabi.nix { };
|
|
|
|
primecoin = callPackage ./primecoin.nix { withGui = true; };
|
|
primecoind = callPackage ./primecoin.nix { withGui = false; };
|
|
|
|
stellar-core = callPackage ./stellar-core.nix { };
|
|
}
|