bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
19 lines
343 B
Nix
19 lines
343 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 = "Library for manipulation of IP address representations using Cstructs";
|
|
};
|
|
}
|