mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 16:15:05 +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
411 B
Nix
21 lines
411 B
Nix
{ lib, buildDunePackage, irmin, astring, logs, lwt
|
|
, alcotest, irmin-test, irmin-watcher }:
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "irmin-fs";
|
|
|
|
inherit (irmin) version src strictDeps;
|
|
|
|
propagatedBuildInputs = [ irmin astring logs lwt ];
|
|
|
|
nativeCheckInputs = [ alcotest irmin-test irmin-watcher ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = irmin.meta // {
|
|
description = "Generic file-system backend for Irmin";
|
|
};
|
|
|
|
}
|