mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
ocamlPackages.irmin-fs: init at 2.0.0
This commit is contained in:
parent
191f1c9a49
commit
52be004a7c
21
pkgs/development/ocaml-modules/irmin/fs.nix
Normal file
21
pkgs/development/ocaml-modules/irmin/fs.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ lib, buildDunePackage, irmin, irmin-test }:
|
||||
|
||||
buildDunePackage rec {
|
||||
|
||||
pname = "irmin-fs";
|
||||
|
||||
inherit (irmin) version src;
|
||||
|
||||
propagatedBuildInputs = [ irmin ];
|
||||
|
||||
checkInputs = lib.optional doCheck irmin-test;
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = irmin.meta // {
|
||||
description = "Generic file-system backend for Irmin";
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
|
@ -372,6 +372,8 @@ let
|
||||
|
||||
irmin = callPackage ../development/ocaml-modules/irmin { };
|
||||
|
||||
irmin-fs = callPackage ../development/ocaml-modules/irmin/fs.nix { };
|
||||
|
||||
irmin-git = callPackage ../development/ocaml-modules/irmin/git.nix { };
|
||||
|
||||
irmin-http = callPackage ../development/ocaml-modules/irmin/http.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user