ocamlPackages.mirage-protocols: init at 4.0.1

This commit is contained in:
Vincent Laporte 2020-04-08 08:30:24 +02:00 committed by Vincent Laporte
parent 81fa88504b
commit 66ffbf57c3
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildDunePackage, fetchurl, duration, ipaddr, mirage-device, mirage-flow }:
buildDunePackage rec {
pname = "mirage-protocols";
version = "4.0.1";
src = fetchurl {
url = "https://github.com/mirage/mirage-protocols/releases/download/v${version}/mirage-protocols-v${version}.tbz";
sha256 = "188m8x6xdw1bllwrpa8f8bqbdqy20kjfk7q8p8jf8j0daf7kl3mi";
};
propagatedBuildInputs = [ duration ipaddr mirage-device mirage-flow ];
meta = {
description = "MirageOS signatures for network protocols";
homepage = "https://github.com/mirage/mirage-protocols";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}

View File

@ -540,6 +540,8 @@ let
mirage-flow = callPackage ../development/ocaml-modules/mirage-flow { };
mirage-protocols = callPackage ../development/ocaml-modules/mirage-protocols { };
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };