My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/rosetta/default.nix

34 lines
682 B

{ 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; [ ];
};
}