nixpkgs-odroid-hc4/pkgs/development/ocaml-modules/ipaddr/cstruct.nix
2025-12-20 09:59:59 +11:00

17 lines
323 B
Nix

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