mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
32 lines
705 B
Nix
32 lines
705 B
Nix
{ 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 = {
|
|
description = "Library for interacting with teletype and terminal emulators";
|
|
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 ];
|
|
};
|
|
}
|