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
ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
ocaml-protoc
/
default.nix
blob
1342aa079a1188f18faf6a1a70b95e9c116ee657
1
{
2
buildDunePackage,
3
pbrt,
4
stdlib-shims,
5
}:
6
7
buildDunePackage rec {
8
pname = "ocaml-protoc";
9
10
inherit (pbrt) version src;
11
12
buildInputs = [ stdlib-shims ];
13
propagatedBuildInputs = [ pbrt ];
14
15
doCheck = true;
16
17
meta = pbrt.meta // {
18
description = "Protobuf Compiler for OCaml";
19
};
20
}