nixpkgs/pkgs/development/ocaml-modules/gapi-ocaml/default.nix

28 lines
705 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, buildDunePackage
, ocurl, cryptokit, ocaml_extlib, yojson, ocamlnet, xmlm
}:
2015-01-25 21:08:33 +00:00
buildDunePackage rec {
pname = "gapi-ocaml";
version = "0.3.19";
minimumOCamlVersion = "4.02";
2017-07-12 09:16:45 +01:00
src = fetchFromGitHub {
owner = "astrada";
repo = pname;
2017-07-12 09:16:45 +01:00
rev = "v${version}";
sha256 = "04arif1p1vj5yr24cwicj70b7yx17hrgf4pl47vqg8ngcrdh71v9";
2015-01-25 21:08:33 +00:00
};
propagatedBuildInputs = [ ocurl cryptokit ocaml_extlib ocamlnet yojson ];
buildInputs = [ xmlm ];
2015-01-25 21:08:33 +00:00
meta = {
description = "OCaml client for google services";
homepage = "http://gapi-ocaml.forge.ocamlcore.org";
2015-01-25 21:08:33 +00:00
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ bennofs ];
};
}