about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/mariadb/default.nix
blob: ed3e5999b4165bb78013f237b6884a92f3b21239 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, lib, fetchFromGitHub, buildOasisPackage
, ctypes, mariadb, libmysqlclient }:

buildOasisPackage rec {
  pname = "mariadb";
  version = "1.1.4";

  minimumOCamlVersion = "4.07.0";

  src = fetchFromGitHub {
    owner = "andrenth";
    repo = "ocaml-mariadb";
    rev = version;
    sha256 = "1rxqvxr6sv4x2hsi05qm9jz0asaq969m71db4ckl672rcql1kwbr";
  };

  buildInputs = [ mariadb libmysqlclient ];
  propagatedBuildInputs = [ ctypes ];

  meta = {
    description = "OCaml bindings for MariaDB";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ bcc32 ];
    homepage = "https://github.com/andrenth/ocaml-mariadb";
  };
}