My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/irmin/fs.nix

23 lines
347 B

{ lib, buildDunePackage, irmin, irmin-test }:
buildDunePackage rec {
pname = "irmin-fs";
inherit (irmin) version src;
propagatedBuildInputs = [ irmin ];
useDune2 = true;
checkInputs = lib.optional doCheck irmin-test;
doCheck = true;
meta = irmin.meta // {
description = "Generic file-system backend for Irmin";
};
}