ed0c4a69f0
GitOrigin-RevId: e3652e0735fbec227f342712f180f4f21f0594f2
25 lines
653 B
Nix
25 lines
653 B
Nix
{ lib, fetchurl, buildDunePackage
|
|
, lwt, mirage-flow
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "mirage-console";
|
|
version = "5.1.0";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
duneVersion = "3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/mirage-console/releases/download/v${version}/mirage-console-${version}.tbz";
|
|
hash = "sha256-mjYRisbNOJbYoSuWaGoPueXakmqAwmWh0ATvLLsvpNM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ lwt mirage-flow ];
|
|
|
|
meta = {
|
|
description = "Implementations of Mirage console devices";
|
|
homepage = "https://github.com/mirage/mirage-console";
|
|
license = lib.licenses.isc;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|