forked from mirrors/nixpkgs
18 lines
343 B
Nix
18 lines
343 B
Nix
|
{ lib, buildDunePackage
|
||
|
, ipaddr, cstruct
|
||
|
}:
|
||
|
|
||
|
buildDunePackage rec {
|
||
|
pname = "ipaddr-cstruct";
|
||
|
|
||
|
inherit (ipaddr) version src minimumOCamlVersion;
|
||
|
|
||
|
propagatedBuildInputs = [ ipaddr cstruct ];
|
||
|
|
||
|
doCheck = true;
|
||
|
|
||
|
meta = ipaddr.meta // {
|
||
|
description = "A library for manipulation of IP address representations using Cstructs";
|
||
|
};
|
||
|
}
|