Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
430 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 usnig sexp";
};
}