ocamlPackages.mirage-random: init at 2.0.0
This commit is contained in:
parent
66ffbf57c3
commit
32feaeab83
20
pkgs/development/ocaml-modules/mirage-random/default.nix
Normal file
20
pkgs/development/ocaml-modules/mirage-random/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -542,6 +542,8 @@ let
|
|||||||
|
|
||||||
mirage-protocols = callPackage ../development/ocaml-modules/mirage-protocols { };
|
mirage-protocols = callPackage ../development/ocaml-modules/mirage-protocols { };
|
||||||
|
|
||||||
|
mirage-random = callPackage ../development/ocaml-modules/mirage-random { };
|
||||||
|
|
||||||
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
|
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
|
||||||
|
|
||||||
mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };
|
mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };
|
||||||
|
Loading…
Reference in New Issue
Block a user