summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/macaddr/sexp.nix
blob: 86d79dc215d6f2e4e0232fc771a02a547dcdea9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  buildDunePackage,
  macaddr,
  ppx_sexp_conv,
  macaddr-cstruct,
  ounit2,
}:

buildDunePackage {
  pname = "macaddr-sexp";

  inherit (macaddr) version src;

  duneVersion = "3";

  propagatedBuildInputs = [ ppx_sexp_conv ];

  checkInputs = [
    macaddr-cstruct
    ounit2
  ];
  doCheck = true;

  meta = macaddr.meta // {
    description = "Library for manipulation of MAC address representations using sexp";
  };
}