mmgen-wallet/nix/vanitygen-plusplus.nix
The MMGen Project abbc9c843a
Nix support improvements
Quick Start for BTC:

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

Enable altcoins and additional packages:

    $ mkdir -p ~/.mmgen
    $ cp 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
2025-01-03 14:24:20 +00:00

15 lines
407 B
Nix

{ pkgs }:
pkgs.stdenv.mkDerivation {
pname = "vanitygen-plusplus";
version = "e7858035";
src = fetchGit {
url = "https://github.com/10gic/vanitygen-plusplus";
rev = "e7858035d092f9b9d6468e2b812475faaf7c69c6";
};
buildInputs = [ pkgs.openssl pkgs.pcre ];
installPhase = ''
mkdir -p $out/bin
install -sv --mode=755 vanitygen keyconv $out/bin
'';
}