about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ipaddr/sexp.nix
blob: 9484f8203cec94193f85eff14d780c3ebfbe3aa2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildDunePackage
, ipaddr, ipaddr-cstruct, ounit2, ppx_sexp_conv
}:

buildDunePackage rec {
  pname = "ipaddr-sexp";

  inherit (ipaddr) version src;

  duneVersion = "3";

  propagatedBuildInputs = [ ipaddr ];

  checkInputs = [ ipaddr-cstruct ounit2 ppx_sexp_conv ];
  doCheck = true;

  meta = ipaddr.meta // {
    description = "Library for manipulation of IP address representations usnig sexp";
  };
}