aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/ipaddr/sexp.nix
blob: 1ede3c064ada251e182a4a891faac71691d50e3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildDunePackage
, ipaddr, ipaddr-cstruct, ounit, ppx_sexp_conv
}:

buildDunePackage rec {
  pname = "ipaddr-sexp";

  inherit (ipaddr) version src useDune2 minimumOCamlVersion;

  propagatedBuildInputs = [ ipaddr ];

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

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