nixpkgs/pkgs/development/ocaml-modules/macaddr/sexp.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
413 B
Nix
Raw Normal View History

{ lib, buildDunePackage
2023-03-23 05:04:25 +00:00
, macaddr, ppx_sexp_conv, macaddr-cstruct, ounit2
}:
buildDunePackage {
pname = "macaddr-sexp";
inherit (macaddr) version src;
2023-03-23 05:04:25 +00:00
duneVersion = "3";
propagatedBuildInputs = [ ppx_sexp_conv ];
2023-03-23 05:04:25 +00:00
checkInputs = [ macaddr-cstruct ounit2 ];
doCheck = true;
meta = macaddr.meta // {
description = "A library for manipulation of MAC address representations using sexp";
};
}