nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / ocaml-modules / yuscii / default.nix
blob9995dbce4aa8c8658d52ce11ee2313c9309ab738
2   alcotest,
3   buildDunePackage,
4   ocaml,
5   fetchzip,
6   gcc,
7   fmt,
8   lib,
9   uutf,
12 buildDunePackage rec {
13   pname = "yuscii";
14   version = "0.3.0";
16   minimalOCamlVersion = "4.03";
17   duneVersion = "3";
19   src = fetchzip {
20     url = "https://github.com/mirage/yuscii/releases/download/v${version}/yuscii-v${version}.tbz";
21     sha256 = "0idywlkw0fbakrxv65swnr5bj7f2vns9kpay7q03gzlv82p670hy";
22   };
24   nativeCheckInputs = [
25     gcc
26   ];
27   checkInputs = [
28     alcotest
29     fmt
30     uutf
31   ];
32   doCheck = lib.versionAtLeast ocaml.version "4.08";
34   meta = {
35     description = "Simple mapper between UTF-7 to Unicode according RFC2152";
36     license = lib.licenses.mit;
37     homepage = "https://github.com/mirage/yuscii";
38     maintainers = [ ];
39   };