ocamlPackages.mirage-fs: init at 3.0.1
This commit is contained in:
parent
8f0accd00f
commit
7be0ab8249
24
pkgs/development/ocaml-modules/mirage-fs/default.nix
Normal file
24
pkgs/development/ocaml-modules/mirage-fs/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ lib, fetchurl, buildDunePackage
|
||||||
|
, cstruct, fmt, lwt, mirage-device, mirage-kv
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "mirage-fs";
|
||||||
|
version = "3.0.1";
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/mirage/mirage-fs/releases/download/v${version}/mirage-fs-v${version}.tbz";
|
||||||
|
sha256 = "0px18bgk528vr7iw78r0j3z4sdcz684sfcj47ibbly2adbvd64yk";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ cstruct fmt lwt mirage-device mirage-kv ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "MirageOS signatures for filesystem devices";
|
||||||
|
homepage = "https://github.com/mirage/mirage-fs";
|
||||||
|
license = lib.licenses.isc;
|
||||||
|
maintainers = [ lib.maintainers.vbgl ];
|
||||||
|
};
|
||||||
|
}
|
@ -559,6 +559,8 @@ let
|
|||||||
|
|
||||||
mirage-flow-unix = callPackage ../development/ocaml-modules/mirage-flow/unix.nix { };
|
mirage-flow-unix = callPackage ../development/ocaml-modules/mirage-flow/unix.nix { };
|
||||||
|
|
||||||
|
mirage-fs = callPackage ../development/ocaml-modules/mirage-fs { };
|
||||||
|
|
||||||
mirage-kv = callPackage ../development/ocaml-modules/mirage-kv { };
|
mirage-kv = callPackage ../development/ocaml-modules/mirage-kv { };
|
||||||
|
|
||||||
mirage-protocols = callPackage ../development/ocaml-modules/mirage-protocols { };
|
mirage-protocols = callPackage ../development/ocaml-modules/mirage-protocols { };
|
||||||
|
Loading…
Reference in New Issue
Block a user