summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/sqlite3/default.nix
blob: 53549791b2534a9c45038ad712cad1a6d01d5493 (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
{ stdenv, fetchurl, sqlite, ocaml, findlib, pkgconfig }:

stdenv.mkDerivation rec {
  name = "ocaml-sqlite3-${version}";
  version = "2.0.9";

  src = fetchurl {
    url = "https://github.com/mmottl/sqlite3-ocaml/releases/download/v${version}/sqlite3-ocaml-${version}.tar.gz";
    sha256 = "0rwsx1nfa3xqmbygim2qx45jqm1gwf08m70wmcwkx50f1qk3l551";
  };

  buildInputs = [ ocaml findlib pkgconfig sqlite ];

  createFindlibDestdir = true;

  meta = with stdenv.lib; {
    homepage = http://mmottl.github.io/sqlite3-ocaml/;
    description = "OCaml bindings to the SQLite 3 database access library";
    license = licenses.mit;
    platforms = ocaml.meta.platforms;
    maintainers = with maintainers; [
      z77z vbgl
    ];
  };
}