mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +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.
19 lines
399 B
Nix
19 lines
399 B
Nix
{ lib, buildDunePackage
|
|
, ipaddr, ipaddr-cstruct, ounit, ppx_sexp_conv
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ipaddr-sexp";
|
|
|
|
inherit (ipaddr) version src;
|
|
|
|
propagatedBuildInputs = [ ipaddr ];
|
|
|
|
nativeCheckInputs = [ ipaddr-cstruct ounit ppx_sexp_conv ];
|
|
doCheck = true;
|
|
|
|
meta = ipaddr.meta // {
|
|
description = "A library for manipulation of IP address representations usnig sexp";
|
|
};
|
|
}
|