nixpkgs-suyu/pkgs/development/ocaml-modules/rosetta/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
682 B
Nix
Raw Normal View History

2021-10-26 01:33:02 +02:00
{ 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";
2021-11-03 01:38:27 +01:00
maintainers = with lib.maintainers; [ ];
2021-10-26 01:33:02 +02:00
};
}