Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
670 B
Nix
36 lines
670 B
Nix
{
|
|
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";
|
|
};
|
|
|
|
duneVersion = "3";
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|