depot/third_party/nixpkgs/pkgs/development/ocaml-modules/mirage-block/default.nix
Default email ed0c4a69f0 Project import generated by Copybara.
GitOrigin-RevId: e3652e0735fbec227f342712f180f4f21f0594f2
2023-03-31 00:05:00 +02:00

24 lines
630 B
Nix

{ lib, fetchurl, buildDunePackage
, cstruct, lwt, fmt
}:
buildDunePackage rec {
pname = "mirage-block";
version = "3.0.2";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mirage/mirage-block/releases/download/v${version}/mirage-block-${version}.tbz";
hash = "sha256-UALUfeL0G1mfSsLgAb/HpQ6OV12YtY+GUOYG6yhUwAI=";
};
propagatedBuildInputs = [ cstruct lwt fmt ];
meta = with lib; {
description = "Block signatures and implementations for MirageOS";
homepage = "https://github.com/mirage/mirage-block";
license = licenses.isc;
maintainers = with maintainers; [ vbgl ];
};
}