nixpkgs/pkgs/development/ocaml-modules/ipaddr/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
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.
2023-01-21 12:00:00 +00:00

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 ];
};
}