mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
19 lines
389 B
Nix
19 lines
389 B
Nix
{ lib, buildDunePackage
|
|
, macaddr, ppx_sexp_conv, macaddr-cstruct, ounit
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "macaddr-sexp";
|
|
|
|
inherit (macaddr) version src;
|
|
|
|
propagatedBuildInputs = [ ppx_sexp_conv ];
|
|
|
|
checkInputs = [ macaddr-cstruct ounit ];
|
|
doCheck = true;
|
|
|
|
meta = macaddr.meta // {
|
|
description = "A library for manipulation of MAC address representations using sexp";
|
|
};
|
|
}
|