mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
21 lines
487 B
Nix
21 lines
487 B
Nix
{ lib, buildDunePackage
|
|
, macaddr, domain-name, stdlib-shims
|
|
, ounit, ppx_sexp_conv
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ipaddr";
|
|
|
|
inherit (macaddr) version src;
|
|
|
|
propagatedBuildInputs = [ macaddr domain-name stdlib-shims ];
|
|
|
|
nativeCheckInputs = [ ppx_sexp_conv ounit ];
|
|
doCheck = true;
|
|
|
|
meta = macaddr.meta // {
|
|
description = "A library for manipulation of IP (and MAC) address representations ";
|
|
maintainers = with lib.maintainers; [ alexfmpe ericbmerritt ];
|
|
};
|
|
}
|