fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / development / ocaml-modules / terminal_size / default.nix
blob305d9743fa4cb794ee528df3a67c2e18a4df8fce
2   lib,
3   buildDunePackage,
4   ocaml,
5   fetchurl,
6   alcotest,
7 }:
9 buildDunePackage rec {
10   pname = "terminal_size";
11   version = "0.2.0";
13   duneVersion = "3";
15   src = fetchurl {
16     url = "https://github.com/cryptosense/terminal_size/releases/download/v${version}/terminal_size-${version}.tbz";
17     hash = "sha256-1rYs0oxAcayFypUoCIdFwSTJCU7+rpFyJRRzb5lzsPs=";
18   };
20   checkInputs = [ alcotest ];
21   doCheck = lib.versionAtLeast ocaml.version "4.08";
23   meta = with lib; {
24     description = "Get the dimensions of the terminal";
25     homepage = "https://github.com/cryptosense/terminal_size";
26     license = licenses.bsd2;
27     maintainers = [ maintainers.sternenseemann ];
28   };