ocamlPackages.mirage-random: init at 2.0.0

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

View file

@ -0,0 +1,20 @@
{ lib, buildDunePackage, fetchurl, cstruct }:
buildDunePackage rec {
pname = "mirage-random";
version = "2.0.0";
src = fetchurl {
url = "https://github.com/mirage/mirage-random/releases/download/v${version}/mirage-random-v${version}.tbz";
sha256 = "0qj41d5smkkkbjwsnz71bhhj94d2cwv53rf3j4rhky0pqbkidnv1";
};
propagatedBuildInputs = [ cstruct ];
meta = {
description = "Random signatures for MirageOS";
homepage = "https://github.com/mirage/mirage-random";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

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