mmgen-wallet/scripts/mmgen-wallet-nix/nixos-packages.nix
The MMGen Project d69fee71c1
support Nix and NixOS
Quick Start for BTC:

    $ git clone https://github.com/mmgen/mmgen-wallet
    $ cd mmgen-wallet
    $ nix-shell --pure scripts/mmgen-wallet-nix/shell.nix

For altcoin support and additional installation options, see:

    scripts/mmgen-wallet-nix/packages.nix

Tested on Linux/x86_64.  On other platforms your mileage may vary.

Note that Nix support is under development, and the installation process
is subject to change.
2024-12-30 13:59:13 +00:00

5 lines
111 B
Nix

{ config, lib, pkgs, ... }:
{
environment.systemPackages = builtins.attrValues (import ./packages.nix);
}