python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / charInfo_width / default.nix
blob5b9814cea69ad3a43850f613d31c25f004a570ff
1 { lib, fetchzip, buildDunePackage, camomile, result }:
3 buildDunePackage rec {
4   pname = "charInfo_width";
5   version = "1.1.0";
6   useDune2 = true;
7   src = fetchzip {
8     url = "https://bitbucket.org/zandoye/charinfo_width/get/${version}.tar.bz2";
9     sha256 = "19mnq9a1yr16srqs8n6hddahr4f9d2gbpmld62pvlw1ps7nfrp9w";
10   };
12   propagatedBuildInputs = [ camomile result ];
14   meta = {
15     homepage = "https://bitbucket.org/zandoye/charinfo_width/";
16     description = "Determine column width for a character";
17     license = lib.licenses.mit;
18     maintainers = [ lib.maintainers.vbgl ];
19   };