ocamlPackages.rosetta: init 0.3.0

This commit is contained in:
superherointj 2021-10-25 20:33:02 -03:00 committed by Vincent Laporte
parent 95068b4647
commit c255780e69
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ buildDunePackage
, coin
, fetchzip
, lib
, yuscii
, uuuu
}:
buildDunePackage rec {
pname = "rosetta";
version = "0.3.0";
src = fetchzip {
url = "https://github.com/mirage/rosetta/releases/download/v${version}/rosetta-v${version}.tbz";
sha256 = "1gzp3fbk8qd207cm25dgj9kj7b44ldqpjs63pl6xqvi9hx60m3ij";
};
useDune2 = true;
propagatedBuildInputs = [
coin
uuuu
yuscii
];
doCheck = false; # No tests.
meta = {
description = "Universal decoder of an encoded flow (UTF-7, ISO-8859 and KOI8) to Unicode";
license = lib.licenses.mit;
homepage = "https://github.com/mirage/rosetta";
maintainers = with lib.maintainers; [ superherointj ];
};
}

View File

@ -1237,6 +1237,8 @@ let
rope = callPackage ../development/ocaml-modules/rope { };
rosetta = callPackage ../development/ocaml-modules/rosetta { };
routes = callPackage ../development/ocaml-modules/routes { };
rpclib = callPackage ../development/ocaml-modules/rpclib { };