summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/mysql/default.nix
blob: 1986f7e48f69e35feb7ad80f457bcd9b7ec52b06 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ stdenv, fetchurl, fetchpatch, ocaml, findlib, mysql }:

# TODO: la versione stabile da' un errore di compilazione dovuto a
# qualche cambiamento negli header .h
# TODO: compilazione di moduli dipendenti da zip, ssl, tcl, gtk, gtk2

let
  pname = "ocaml-mysql";
in

stdenv.mkDerivation rec {
  name = "${pname}-${version}";
  version = "1.2.1";

  src = fetchurl {
    url = "http://ygrek.org.ua/p/release/ocaml-mysql/${name}.tar.gz";
    sha256 = "06mb2bq7v37wn0lza61917zqgb4bsg1xxb73myjyn88p6khl6yl2";
  };

  configureFlags = [ 
     "--prefix=$out" 
     "--libdir=$out/lib/ocaml/${ocaml.version}/site-lib/mysql"
  ];

  buildInputs = [ ocaml findlib ];

  createFindlibDestdir = true;

  propagatedBuildInputs = [ mysql.connector-c ];

  patches = [
    (fetchpatch {
      url = "https://github.com/ygrek/ocaml-mysql/compare/v1.2.1...d6d1b3b262ae2cf493ef56f1dd7afcf663a70a26.patch";
      sha256 = "0018s2wcrvbsw9yaqmwq500qmikwffrgdp5xg9b8v7ixhd4gi6hn";
    })
  ];

  meta = {
    homepage = http://ocaml-mysql.forge.ocamlcore.org;
    description = "Bindings for interacting with MySQL databases from ocaml";
    license = stdenv.lib.licenses.lgpl21Plus;
    maintainers = [ stdenv.lib.maintainers.roconnor ];
  };
}