Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / ipaddr / cstruct.nix
blob07abfc9673436e513bb251f0c13d65b411c8acdd
1 { lib, buildDunePackage
2 , ipaddr, cstruct
3 }:
5 buildDunePackage rec {
6   pname = "ipaddr-cstruct";
8   inherit (ipaddr) version src;
10   duneVersion = "3";
12   propagatedBuildInputs = [ ipaddr cstruct ];
14   doCheck = true;
16   meta = ipaddr.meta // {
17     description = "A library for manipulation of IP address representations using Cstructs";
18   };