lol

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

ocamlPackages.mirage-console: 4.0.0 → 5.1.0

authored by

superherointj and committed by
GitHub
8507922b 34c1276f

+7 -9
+6 -8
pkgs/development/ocaml-modules/mirage-console/default.nix
··· 1 1 { lib, fetchurl, buildDunePackage 2 - , lwt, mirage-device, mirage-flow 2 + , lwt, mirage-flow 3 3 }: 4 4 5 5 buildDunePackage rec { 6 6 pname = "mirage-console"; 7 - version = "4.0.0"; 7 + version = "5.1.0"; 8 8 9 - minimumOCamlVersion = "4.08"; 10 - 11 - useDune2 = true; 9 + minimalOCamlVersion = "4.08"; 12 10 13 11 src = fetchurl { 14 - url = "https://github.com/mirage/mirage-console/releases/download/v${version}/mirage-console-v${version}.tbz"; 15 - sha256 = "11nwfd4kmmdzkrkhbakdi3cxhk8vi98l17960rgcf85c602gw6vp"; 12 + url = "https://github.com/mirage/mirage-console/releases/download/v${version}/mirage-console-${version}.tbz"; 13 + sha256 = "sha256-mjYRisbNOJbYoSuWaGoPueXakmqAwmWh0ATvLLsvpNM="; 16 14 }; 17 15 18 - propagatedBuildInputs = [ lwt mirage-device mirage-flow ]; 16 + propagatedBuildInputs = [ lwt mirage-flow ]; 19 17 20 18 meta = { 21 19 description = "Implementations of Mirage console devices";
+1 -1
pkgs/development/ocaml-modules/mirage-console/unix.nix
··· 3 3 buildDunePackage { 4 4 pname = "mirage-console-unix"; 5 5 6 - inherit (mirage-console) version src useDune2 minimumOCamlVersion; 6 + inherit (mirage-console) version src; 7 7 8 8 propagatedBuildInputs = [ 9 9 mirage-console