mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
44 lines
1.4 KiB
Nix
44 lines
1.4 KiB
Nix
{ lib, fetchurl, stdenv
|
|
, fetchpatch
|
|
, ocaml, findlib, ocamlbuild, camlp-streams
|
|
, ctypes, mariadb, libmysqlclient }:
|
|
|
|
lib.throwIfNot (lib.versionAtLeast ocaml.version "4.07")
|
|
"mariadb is not available for OCaml ${ocaml.version}"
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ocaml${ocaml.version}-mariadb";
|
|
version = "1.1.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/andrenth/ocaml-mariadb/releases/download/${version}/ocaml-mariadb-${version}.tar.gz";
|
|
sha256 = "sha256-3/C1Gz6luUzS7oaudLlDHMT6JB2v5OdbLVzJhtayHGM=";
|
|
};
|
|
|
|
patches = fetchpatch {
|
|
url = "https://github.com/andrenth/ocaml-mariadb/commit/9db2e4d8dec7c584213d0e0f03d079a36a35d9d5.patch";
|
|
hash = "sha256-heROtU02cYBJ5edIHMdYP1xNXcLv8h79GYGBuudJhgE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.ml --replace '#use "topfind"' \
|
|
'#directory "${findlib}/lib/ocaml/${ocaml.version}/site-lib/";; #use "topfind"'
|
|
'';
|
|
|
|
nativeBuildInputs = [ ocaml findlib ocamlbuild ];
|
|
buildInputs = [ mariadb libmysqlclient camlp-streams ocamlbuild ];
|
|
propagatedBuildInputs = [ ctypes ];
|
|
|
|
strictDeps = true;
|
|
|
|
preInstall = "mkdir -p $OCAMLFIND_DESTDIR/stublibs";
|
|
|
|
meta = {
|
|
description = "OCaml bindings for MariaDB";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ bcc32 ];
|
|
homepage = "https://github.com/andrenth/ocaml-mariadb";
|
|
inherit (ocaml.meta) platforms;
|
|
};
|
|
}
|