Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-block / default.nix
blob0cd1f1717ea6682288fa383829bcf9ae7e0ceccd
1 { lib, fetchurl, buildDunePackage
2 , cstruct, lwt, fmt
3 }:
5 buildDunePackage rec {
6   pname = "mirage-block";
7   version = "3.0.2";
9   duneVersion = "3";
11   src = fetchurl {
12     url = "https://github.com/mirage/mirage-block/releases/download/v${version}/mirage-block-${version}.tbz";
13     hash = "sha256-UALUfeL0G1mfSsLgAb/HpQ6OV12YtY+GUOYG6yhUwAI=";
14   };
16   propagatedBuildInputs = [ cstruct lwt fmt ];
18   meta = with lib; {
19     description = "Block signatures and implementations for MirageOS";
20     homepage = "https://github.com/mirage/mirage-block";
21     license = licenses.isc;
22     maintainers = with maintainers; [ vbgl ];
23   };