mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-05 19:53:43 +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
391 B
Nix
19 lines
391 B
Nix
{ lib, buildDunePackage, irmin, irmin-test, fmt, logs, lwt, alcotest }:
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "irmin-chunk";
|
|
inherit (irmin) version src strictDeps;
|
|
|
|
propagatedBuildInputs = [ irmin fmt logs lwt ];
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [ alcotest irmin-test ];
|
|
|
|
meta = irmin.meta // {
|
|
description = "Irmin backend which allow to store values into chunks";
|
|
};
|
|
|
|
}
|
|
|