zero-mysql 0.4.1

A high-performance MySQL client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  pkgs ? import <nixpkgs> { },
}:

pkgs.mkShell {
  buildInputs = with pkgs; [
    # For criterion benchmarks (plots)
    gnuplot

    # SSL support
    openssl
    pkg-config
  ];

  shellHook = ''
    export DATABASE_URL="mysql://test:1234@localhost/test"
  '';
}