Files
nixpkgs/pkgs/development/ocaml-modules/ipaddr/sexp.nix
Ben Siraphob f82dc8ebe9 pkgs/development: fix typos
Assisted-by: Claude Code (claude-opus-5)
2026-08-02 15:56:57 -07:00

29 lines
430 B
Nix

{
buildDunePackage,
ipaddr,
ipaddr-cstruct,
ounit2,
ppx_sexp_conv,
}:
buildDunePackage {
pname = "ipaddr-sexp";
inherit (ipaddr) version src;
duneVersion = "3";
propagatedBuildInputs = [ ipaddr ];
checkInputs = [
ipaddr-cstruct
ounit2
ppx_sexp_conv
];
doCheck = true;
meta = ipaddr.meta // {
description = "Library for manipulation of IP address representations using sexp";
};
}