ocamlPackages.gapi-ocaml: 0.4.2 → 0.4.3
This commit is contained in:
committed by
Vincent Laporte
parent
950a258b9e
commit
ae0b8a01b1
@@ -1,5 +1,5 @@
|
|||||||
{ lib, buildDunePackage, fetchFromGitHub
|
{ lib, buildDunePackage, fetchFromGitHub
|
||||||
, ocaml_extlib, ocamlfuse, gapi_ocaml, ocaml_sqlite3
|
, ocaml_extlib, ocamlfuse, gapi-ocaml, ocaml_sqlite3
|
||||||
, tiny_httpd
|
, tiny_httpd
|
||||||
, ounit
|
, ounit
|
||||||
}:
|
}:
|
||||||
@@ -18,7 +18,7 @@ buildDunePackage rec {
|
|||||||
doCheck = true;
|
doCheck = true;
|
||||||
checkInputs = [ ounit ];
|
checkInputs = [ ounit ];
|
||||||
|
|
||||||
buildInputs = [ ocaml_extlib ocamlfuse gapi_ocaml ocaml_sqlite3 tiny_httpd ];
|
buildInputs = [ ocaml_extlib ocamlfuse gapi-ocaml ocaml_sqlite3 tiny_httpd ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
inherit (src.meta) homepage;
|
inherit (src.meta) homepage;
|
||||||
|
|||||||
@@ -1,31 +1,29 @@
|
|||||||
{ lib, fetchFromGitHub, buildDunePackage, ocaml
|
{ lib, fetchFromGitHub, buildDunePackage, ocaml
|
||||||
, cryptokit, ocamlnet, ocurl, yojson
|
, cryptokit, ocamlnet, ocurl, yojson
|
||||||
, ounit
|
, ounit2
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "gapi-ocaml";
|
pname = "gapi-ocaml";
|
||||||
version = "0.4.2";
|
version = "0.4.3";
|
||||||
|
|
||||||
useDune2 = true;
|
minimalOCamlVersion = "4.02";
|
||||||
|
|
||||||
minimumOCamlVersion = "4.02";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "astrada";
|
owner = "astrada";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-imicHOlNjPHHW/lcWRJmURafYZFe/6J3efKPJcel8J8=";
|
sha256 = "sha256-V0GB9Bd06IdcI5PDFHGVZ0Y/qi7tTs/4ITqPXUOxCLs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ cryptokit ocamlnet ocurl yojson ];
|
propagatedBuildInputs = [ cryptokit ocamlnet ocurl yojson ];
|
||||||
|
|
||||||
doCheck = lib.versionAtLeast ocaml.version "4.04";
|
doCheck = lib.versionAtLeast ocaml.version "4.04";
|
||||||
checkInputs = [ ounit ];
|
checkInputs = [ ounit2 ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "OCaml client for google services";
|
description = "OCaml client for google services";
|
||||||
homepage = "http://gapi-ocaml.forge.ocamlcore.org";
|
inherit (src.meta) homepage;
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with lib.maintainers; [ bennofs ];
|
maintainers = with lib.maintainers; [ bennofs ];
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -549,7 +549,7 @@ let
|
|||||||
|
|
||||||
dypgen = callPackage ../development/ocaml-modules/dypgen { };
|
dypgen = callPackage ../development/ocaml-modules/dypgen { };
|
||||||
|
|
||||||
gapi_ocaml = callPackage ../development/ocaml-modules/gapi-ocaml { };
|
gapi-ocaml = callPackage ../development/ocaml-modules/gapi-ocaml { };
|
||||||
|
|
||||||
gen_js_api = callPackage ../development/ocaml-modules/gen_js_api { };
|
gen_js_api = callPackage ../development/ocaml-modules/gen_js_api { };
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user