onionpipe 0.4.0

Onion addresses for anything.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
  nativeBuildInputs = with pkgs.buildPackages; [
    rustc cargo rustfmt clippy
    automake autoconf269 gnumake gcc libtool
    gh
  ];

  buildInputs = with pkgs.buildPackages; [
    openssl_1_1 libevent zlib pkg-config
  ];

  shellHook = ''
    export PATH=$HOME/.cargo/bin:$PATH
  '';
}