xcursor-pro: init at 2.0.2 (#335188)
[NixPkgs.git] / pkgs / development / ocaml-modules / gapi-ocaml / default.nix
blob3cce4f30823c70ef004092b82758a285cfe0e2a5
2   lib,
3   fetchFromGitHub,
4   buildDunePackage,
5   camlp-streams,
6   cppo,
7   cryptokit,
8   ocurl,
9   yojson,
10   ounit2,
13 buildDunePackage rec {
14   pname = "gapi-ocaml";
15   version = "0.4.5";
17   minimalOCamlVersion = "4.08";
19   src = fetchFromGitHub {
20     owner = "astrada";
21     repo = pname;
22     rev = "v${version}";
23     hash = "sha256-qlQEE8l/H22bb1VcK9YehR+9L5XepMu8JY7OLw1OIXg=";
24   };
26   nativeBuildInputs = [ cppo ];
28   propagatedBuildInputs = [
29     camlp-streams
30     cryptokit
31     ocurl
32     yojson
33   ];
35   doCheck = true;
36   checkInputs = [ ounit2 ];
38   meta = {
39     description = "OCaml client for google services";
40     homepage = "https://github.com/astrada/gapi-ocaml";
41     license = lib.licenses.mit;
42     maintainers = with lib.maintainers; [ bennofs ];
43   };