easypassword 0.1.2

A program to create passwords like in xkcd.com/936. The file has to have one word per line. One seperator should be a special character. The other seperator should be a number.
1
2
3
4
5
6
7
8
9
10
11
12
13
let
  moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
  pkgs = import <nixpkgs> { overlays = [ moz_overlay ]; };
in
  with pkgs;
  stdenv.mkDerivation {
    name = "moz_overlay_shell";
    buildInputs = [
      pkgs.latest.rustChannels.stable.cargo
      pkgs.latest.rustChannels.stable.rust
      pkgs.latest.rustChannels.stable.rust-std
    ];
  }