Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
ocamlPackages.ocaml-protoc: init at 1.2.0 (#68962)
Browse files Browse the repository at this point in the history
  • Loading branch information
vyorkin authored and vbgl committed Sep 20, 2019
1 parent 25544be commit fac7453
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pkgs/development/ocaml-modules/ocaml-protoc/default.nix
@@ -0,0 +1,38 @@
{ stdenv, ocaml, fetchFromGitHub, ocamlbuild, findlib, ppx_deriving_protobuf }:

stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-ocaml-protoc-${version}";
version = "1.2.0";

minimumOCamlVersion = "4.02";

src = fetchFromGitHub {
owner = "mransan";
repo = "ocaml-protoc";
rev = "60d2d4dd55f73830e1bed603cc44d3420430632c";
sha256 = "1d1p8ch723z2qa9azmmnhbcpwxbpzk3imh1cgkjjq4p5jwzj8amj";
};

installPhase = ''
mkdir -p tmp/bin
export PREFIX=`pwd`/tmp
make all.install.build
make check_install
make lib.install
make bin.install
'';

buildInputs = [ ocaml findlib ocamlbuild ];
propagatedBuildInputs = [ ppx_deriving_protobuf ];

createFindlibDestdir = true;

doCheck = true;

meta = with stdenv.lib; {
homepage = "https://github.com/mransan/ocaml-protoc";
description = "A Protobuf Compiler for OCaml";
license = licenses.mit;
maintainers = [ maintainers.vyorkin ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/ocaml-packages.nix
Expand Up @@ -664,6 +664,8 @@ let
then sexplib_108_08_00
else null;

ocaml-protoc = callPackage ../development/ocaml-modules/ocaml-protoc { };

ocaml_extlib = callPackage ../development/ocaml-modules/extlib { };

ocb-stubblr = callPackage ../development/ocaml-modules/ocb-stubblr { };
Expand Down

0 comments on commit fac7453

Please sign in to comment.