about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/charInfo_width/default.nix
blob: aaf181104548664d57b975e2f3924ebaa9e30cfb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, fetchzip, buildDunePackage, camomile, result }:

buildDunePackage rec {
  pname = "charInfo_width";
  version = "1.1.0";
  duneVersion = "3";
  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 ];
  };
}