mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
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 ];
|
|
};
|
|
}
|