about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/gapi-ocaml/default.nix
blob: 20ade26f9099d83d855c27e4adf1cbd83411485e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchFromGitHub, buildDunePackage, ocurl, cryptokit, ocaml_extlib, yojson, ocamlnet, xmlm }:

buildDunePackage rec {
  pname = "gapi-ocaml";
  version = "0.3.6";

  minimumOCamlVersion = "4.02";

  src = fetchFromGitHub {
    owner = "astrada";
    repo = pname;
    rev = "v${version}";
    sha256 = "0qgsy51bhkpfgl5rdnjw4bqs5fbh2w4vwrfbl8y3lh1wrqmnwci4";
  };

  propagatedBuildInputs = [ ocurl cryptokit ocaml_extlib yojson ocamlnet xmlm ];

  meta = {
    description = "OCaml client for google services";
    homepage = "http://gapi-ocaml.forge.ocamlcore.org";
    license = stdenv.lib.licenses.mit;
    maintainers = with stdenv.lib.maintainers; [ bennofs ];
  };
}