about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/macaddr/sexp.nix
blob: 5d096dfececdb324352c532439e6cd2246fede2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, 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 = "A library for manipulation of MAC address representations using sexp";
  };
}