mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
34 lines
662 B
Nix
34 lines
662 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 = [ ];
|
|
};
|
|
}
|