nixpkgs/pkgs/development/ocaml-modules/mirage-fs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
625 B
Nix
Raw Normal View History

2020-10-17 05:35:47 +00:00
{ lib, fetchurl, buildDunePackage
2023-03-02 04:42:15 +00:00
, cstruct, fmt, lwt, mirage-kv
2020-10-17 05:35:47 +00:00
}:
buildDunePackage rec {
pname = "mirage-fs";
version = "4.0.0";
2020-10-17 05:35:47 +00:00
2023-03-02 04:42:15 +00:00
duneVersion = "3";
2020-10-17 05:35:47 +00:00
src = fetchurl {
url = "https://github.com/mirage/mirage-fs/releases/download/v${version}/mirage-fs-v${version}.tbz";
2023-03-02 04:42:15 +00:00
hash = "sha256-PYZ2HCPuxOv4FU7EHymsa1oIZU7q8TSzzRvlngYdZ3s=";
2020-10-17 05:35:47 +00:00
};
2023-03-02 04:42:15 +00:00
propagatedBuildInputs = [ cstruct fmt lwt mirage-kv ];
2020-10-17 05:35:47 +00:00
meta = {
description = "MirageOS signatures for filesystem devices";
homepage = "https://github.com/mirage/mirage-fs";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}