2020-07-18 16:06:22 +00:00
|
|
|
{ lib, buildDunePackage
|
|
|
|
, ipaddr, cstruct
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "ipaddr-cstruct";
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
inherit (ipaddr) version src;
|
2020-07-18 16:06:22 +00:00
|
|
|
|
2023-03-24 00:07:29 +00:00
|
|
|
duneVersion = "3";
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
propagatedBuildInputs = [ ipaddr cstruct ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = ipaddr.meta // {
|
|
|
|
description = "A library for manipulation of IP address representations using Cstructs";
|
|
|
|
};
|
|
|
|
}
|