ocamlPackages.charInfo_width: init at 1.1.0

This commit is contained in:
Vincent Laporte 2019-08-15 09:05:53 +00:00 committed by Vincent Laporte
parent a473b6efc5
commit 59cf0772c2
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ lib, fetchzip, buildDunePackage, camomile, result }:
buildDunePackage rec {
pname = "charInfo_width";
version = "1.1.0";
src = fetchzip {
url = "https://bitbucket.org/zandoye/charinfo_width/get/${version}.tar.bz2";
sha256 = "19mnq9a1yr16srqs8n6hddahr4f9d2gbpmld62pvlw1ps7nfrp9w";
};
propagatedBuildInputs = [ camomile result ];
meta = {
homepage = "https://bitbucket.org/zandoye/charinfo_width/";
description = "Determine column width for a character";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

@ -128,6 +128,8 @@ let
cairo2 = callPackage ../development/ocaml-modules/cairo2 { };
charInfo_width = callPackage ../development/ocaml-modules/charInfo_width { };
checkseum = callPackage ../development/ocaml-modules/checkseum { };
cil = callPackage ../development/ocaml-modules/cil { };