ocamlPackages.ocaml_sqlite3: 2.0.9 -> 5.0.1 (#77295)
This commit is contained in:
parent
fb972bd92b
commit
c4036d5c35
@ -1,24 +1,22 @@
|
|||||||
{ stdenv, fetchurl, sqlite, ocaml, findlib, ocamlbuild, pkgconfig }:
|
{ lib, fetchurl, sqlite, pkgconfig, buildDunePackage }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
buildDunePackage rec {
|
||||||
pname = "ocaml-sqlite3";
|
pname = "sqlite3";
|
||||||
version = "2.0.9";
|
version = "5.0.1";
|
||||||
|
minimumOCamlVersion = "4.05";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/mmottl/sqlite3-ocaml/releases/download/v${version}/sqlite3-ocaml-${version}.tar.gz";
|
url = "https://github.com/mmottl/sqlite3-ocaml/releases/download/${version}/sqlite3-${version}.tbz";
|
||||||
sha256 = "0rwsx1nfa3xqmbygim2qx45jqm1gwf08m70wmcwkx50f1qk3l551";
|
sha256 = "0iymkszrs6qwak0vadfzc8yd8jfwn06zl08ggb4jr2mgk2c8mmsn";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ ocaml findlib ocamlbuild sqlite ];
|
buildInputs = [ sqlite ];
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
meta = with lib; {
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
homepage = http://mmottl.github.io/sqlite3-ocaml/;
|
homepage = http://mmottl.github.io/sqlite3-ocaml/;
|
||||||
description = "OCaml bindings to the SQLite 3 database access library";
|
description = "OCaml bindings to the SQLite 3 database access library";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = ocaml.meta.platforms or [];
|
|
||||||
maintainers = with maintainers; [
|
maintainers = with maintainers; [
|
||||||
maggesi vbgl
|
maggesi vbgl
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user