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.
14 lines
339 B
Nix
14 lines
339 B
Nix
{ buildDunePackage, printbox, uucp, uutf, mdx }:
|
|
|
|
buildDunePackage {
|
|
pname = "printbox-text";
|
|
inherit (printbox) src version useDune2 doCheck;
|
|
|
|
propagatedBuildInputs = [ printbox uucp uutf ];
|
|
|
|
nativeCheckInputs = [ mdx.bin ];
|
|
|
|
meta = printbox.meta // {
|
|
description = "Text renderer for printbox, using unicode edges";
|
|
};
|
|
}
|