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

buildDunePackage {
  pname = "macaddr-sexp";

  inherit (macaddr) version src minimumOCamlVersion;

  propagatedBuildInputs = [ ppx_sexp_conv ];

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

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