Quick Start for BTC:
$ git clone https://github.com/mmgen/mmgen-wallet
$ git clone https://github.com/mmgen/mmgen-node-tools
$ cd mmgen-node-tools
$ test/init.sh
$ nix-shell --pure nix
Enable altcoins and additional packages:
# From the mmgen-node-tools repository root:
$ mkdir -p ~/.mmgen
$ cp ../mmgen-wallet/nix/user-packages.nix ~/.mmgen
# ... edit ~/.mmgen/user-packages.nix as required ...
$ nix-shell --pure nix
For NixOS installation and other information, see:
nix/README.node-tools
../mmgen-wallet/nix/README
12 lines
296 B
Nix
12 lines
296 B
Nix
{ pkgs, python }:
|
|
|
|
{
|
|
system-packages = with pkgs; {
|
|
cacert = cacert; # ticker (curl)
|
|
};
|
|
|
|
python-packages = with python.pkgs; {
|
|
yahooquery = (pkgs.callPackage ./yahooquery.nix {}); # ticker
|
|
pyyaml = pyyaml; # ticker
|
|
};
|
|
}
|