e07e376563
It wouldn't be good to have two unrelated packages called `dash`. Discussed on #10772.
29 lines
963 B
Nix
29 lines
963 B
Nix
{ callPackage, pkgs }:
|
|
|
|
rec {
|
|
|
|
bitcoin = callPackage ./bitcoin.nix { withGui = true; };
|
|
bitcoind = callPackage ./bitcoin.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; };
|
|
|
|
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 { };
|
|
|
|
primecoin = callPackage ./primecoin.nix { withGui = true; };
|
|
primecoind = callPackage ./primecoin.nix { withGui = false; };
|
|
|
|
}
|