nixpkgs/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
684 B
Nix
Raw Normal View History

2021-10-25 23:33:02 +00: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";
};
2023-02-06 06:50:42 +00:00
duneVersion = "3";
2021-10-25 23:33:02 +00:00
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 00:38:27 +00:00
maintainers = with lib.maintainers; [ ];
2021-10-25 23:33:02 +00:00
};
}