nixpkgs/pkgs/development/ocaml-modules/ipaddr/cstruct.nix

18 lines
352 B
Nix
Raw Normal View History

{ lib, buildDunePackage
, ipaddr, cstruct
}:
buildDunePackage rec {
pname = "ipaddr-cstruct";
2020-11-19 06:36:38 +00:00
inherit (ipaddr) version src useDune2 minimumOCamlVersion;
propagatedBuildInputs = [ ipaddr cstruct ];
doCheck = true;
meta = ipaddr.meta // {
description = "A library for manipulation of IP address representations using Cstructs";
};
}