ocamlPackages.mirage-stack: init at 2.0.1

This commit is contained in:
Vincent Laporte 2020-04-08 08:33:19 +02:00 committed by Vincent Laporte
parent 32feaeab83
commit 6edabf41b3
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib, buildDunePackage, fetchurl, mirage-protocols }:
buildDunePackage rec {
pname = "mirage-stack";
version = "2.0.1";
src = fetchurl {
url = "https://github.com/mirage/mirage-stack/releases/download/v${version}/mirage-stack-v${version}.tbz";
sha256 = "1xdy59bxnki1r0jwm3s8fwarhhbxr0lsqqiag5b1j41hciiqp9jq";
};
propagatedBuildInputs = [ mirage-protocols ];
meta = {
description = "MirageOS signatures for network stacks";
homepage = "https://github.com/mirage/mirage-stack";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}

View File

@ -544,6 +544,8 @@ let
mirage-random = callPackage ../development/ocaml-modules/mirage-random { };
mirage-stack = callPackage ../development/ocaml-modules/mirage-stack { };
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };