Merge pull request #179514 from vbgl/ocaml-mirage-console-5.1.0

ocamlPackages.mirage-console: 4.0.0 → 5.1.0
This commit is contained in:
superherointj 2022-07-03 13:38:14 -03:00 committed by GitHub
commit 8507922b3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 9 deletions

View File

@ -1,21 +1,19 @@
{ lib, fetchurl, buildDunePackage
, lwt, mirage-device, mirage-flow
, lwt, mirage-flow
}:
buildDunePackage rec {
pname = "mirage-console";
version = "4.0.0";
version = "5.1.0";
minimumOCamlVersion = "4.08";
useDune2 = true;
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/mirage/mirage-console/releases/download/v${version}/mirage-console-v${version}.tbz";
sha256 = "11nwfd4kmmdzkrkhbakdi3cxhk8vi98l17960rgcf85c602gw6vp";
url = "https://github.com/mirage/mirage-console/releases/download/v${version}/mirage-console-${version}.tbz";
sha256 = "sha256-mjYRisbNOJbYoSuWaGoPueXakmqAwmWh0ATvLLsvpNM=";
};
propagatedBuildInputs = [ lwt mirage-device mirage-flow ];
propagatedBuildInputs = [ lwt mirage-flow ];
meta = {
description = "Implementations of Mirage console devices";

View File

@ -3,7 +3,7 @@
buildDunePackage {
pname = "mirage-console-unix";
inherit (mirage-console) version src useDune2 minimumOCamlVersion;
inherit (mirage-console) version src;
propagatedBuildInputs = [
mirage-console