zero-mysql 0.2.1

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

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

    # SSL support
    openssl
    pkg-config
  ];
}