depot/third_party/nixpkgs/pkgs/development/ocaml-modules/sqlite3/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

24 lines
675 B
Nix

{ lib, fetchurl, sqlite, pkg-config, buildDunePackage }:
buildDunePackage rec {
pname = "sqlite3";
version = "5.0.2";
minimumOCamlVersion = "4.05";
src = fetchurl {
url = "https://github.com/mmottl/sqlite3-ocaml/releases/download/${version}/sqlite3-${version}.tbz";
sha256 = "0sba74n0jvzxibrclhbpqscil36yfw7i9jj9q562yhza6rax9p82";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ sqlite ];
meta = with lib; {
homepage = "http://mmottl.github.io/sqlite3-ocaml/";
description = "OCaml bindings to the SQLite 3 database access library";
license = licenses.mit;
maintainers = with maintainers; [
maggesi vbgl
];
};
}