eb33e01ac7
* Set createFindlibDestdir to various ocaml packages. svn path=/nixpkgs/trunk/; revision=25220
38 lines
903 B
Nix
38 lines
903 B
Nix
{stdenv, fetchurl, sqlite, ocaml, findlib}:
|
|
|
|
let
|
|
ocaml_version = (builtins.parseDrvName ocaml.name).version;
|
|
version = "1.5.8";
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ocaml-sqlite3-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://hg.ocaml.info/release/ocaml-sqlite3/archive/" +
|
|
"release-${version}.tar.bz2";
|
|
sha256 = "0ccy9b4pl9586vlzdkk3kvkz8xqc023ih1aw4nndyjnabkvgl832";
|
|
};
|
|
|
|
buildInputs = [ocaml findlib];
|
|
|
|
configureFlags = "--with-sqlite3=${sqlite}";
|
|
|
|
preConfigure = ''
|
|
export OCAMLPATH=$OCAMLPATH:$OCAMLFIND_DESTDIR
|
|
ensureDir $out/bin
|
|
'';
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
meta = {
|
|
homepage = "http://ocaml.info/home/ocaml_sources.html#ocaml-sqlite3";
|
|
description = "OCaml bindings to the SQLite 3 database access library";
|
|
license = "MIT/X11";
|
|
platforms = ocaml.meta.platforms;
|
|
maintainers = [
|
|
stdenv.lib.maintainers.z77z
|
|
];
|
|
};
|
|
}
|