nixpkgs/pkgs/development/ocaml-modules/ipaddr/cstruct.nix
2023-03-23 06:04:25 +01:00

20 lines
345 B
Nix

{ lib, buildDunePackage
, ipaddr, cstruct
}:
buildDunePackage rec {
pname = "ipaddr-cstruct";
inherit (ipaddr) version src;
duneVersion = "3";
propagatedBuildInputs = [ ipaddr cstruct ];
doCheck = true;
meta = ipaddr.meta // {
description = "A library for manipulation of IP address representations using Cstructs";
};
}