repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
ocaml-protoc
/
default.nix
blob
301a0f2c9a61f01d7fea0183bb43de3867179223
1
{ lib, fetchFromGitHub, buildDunePackage
2
, pbrt
3
, stdlib-shims
4
}:
5
6
buildDunePackage rec {
7
pname = "ocaml-protoc";
8
9
inherit (pbrt) version src;
10
11
buildInputs = [ stdlib-shims ];
12
propagatedBuildInputs = [ pbrt ];
13
14
doCheck = true;
15
16
meta = pbrt.meta // {
17
description = "A Protobuf Compiler for OCaml";
18
};
19
}