2024-01-02 11:29:13 +00:00
|
|
|
{ lib
|
|
|
|
, buildDunePackage
|
|
|
|
, fetchurl
|
|
|
|
, uutf
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "tty";
|
|
|
|
version = "0.0.2";
|
|
|
|
|
|
|
|
minimalOCamlVersion = "5.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/leostera/tty/releases/download/${version}/tty-${version}.tbz";
|
|
|
|
hash = "sha256-eeD5Y+/QXZzFoEHvOSZj2Q74V8BK5j3Lu3Zsrj2YUUs=";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
uutf
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Library for interacting with teletype and terminal emulators";
|
2024-01-02 11:29:13 +00:00
|
|
|
homepage = "https://github.com/leostera/tty";
|
|
|
|
changelog = "https://github.com/leostera/tty/blob/${version}/CHANGES.md";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ sixstring982 ];
|
|
|
|
};
|
|
|
|
}
|