about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/ipaddr/cstruct.nix
blob: c2621584f34f74ccbe714193f98f0ea1e9d9957d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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";
  };
}