mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
18 lines
352 B
Nix
18 lines
352 B
Nix
{ lib, buildDunePackage
|
|
, ipaddr, cstruct
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ipaddr-cstruct";
|
|
|
|
inherit (ipaddr) version src useDune2 minimumOCamlVersion;
|
|
|
|
propagatedBuildInputs = [ ipaddr cstruct ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = ipaddr.meta // {
|
|
description = "A library for manipulation of IP address representations using Cstructs";
|
|
};
|
|
}
|