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

25 lines
680 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.6";
minimumOCamlVersion = "4.02";
2017-07-12 08:16:45 +00:00
src = fetchFromGitHub {
owner = "astrada";
repo = pname;
2017-07-12 08:16:45 +00:00
rev = "v${version}";
sha256 = "0qgsy51bhkpfgl5rdnjw4bqs5fbh2w4vwrfbl8y3lh1wrqmnwci4";
2015-01-25 21:08:33 +00:00
};
propagatedBuildInputs = [ ocurl cryptokit ocaml_extlib yojson ocamlnet xmlm ];
2015-01-25 21:08:33 +00:00
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 ];
};
}