python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / ansiterminal / default.nix
blobedd40fb4df29be172b2135efeb5c9f571eaa38c3
1 { lib, buildDunePackage, fetchFromGitHub }:
3 buildDunePackage rec {
4   pname = "ANSITerminal";
5   version = "0.8.2";
7   useDune2 = true;
9   src = fetchFromGitHub {
10     owner = "Chris00";
11     repo = pname;
12     rev = version;
13     sha256 = "0dyjischrgwlxqz1p5zbqq76jvk6pl1qj75i7ydhijssr9pj278d";
14   };
16   doCheck = true;
18   meta = with lib; {
19     description = "A module allowing to use the colors and cursor movements on ANSI terminals";
20     longDescription = ''
21       ANSITerminal is a module allowing to use the colors and cursor
22       movements on ANSI terminals. It also works on the windows shell (but
23       this part is currently work in progress).
24     '';
25     inherit (src.meta) homepage;
26     license = licenses.lgpl3;
27     maintainers = [ maintainers.jirkamarsik ];
28   };