fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 buildDunePackage,
3 coin,
4 fetchzip,
5 lib,
6 yuscii,
7 uuuu,
8}:
9
10buildDunePackage rec {
11 pname = "rosetta";
12 version = "0.3.0";
13
14 src = fetchzip {
15 url = "https://github.com/mirage/rosetta/releases/download/v${version}/rosetta-v${version}.tbz";
16 sha256 = "1gzp3fbk8qd207cm25dgj9kj7b44ldqpjs63pl6xqvi9hx60m3ij";
17 };
18
19 duneVersion = "3";
20
21 propagatedBuildInputs = [
22 coin
23 uuuu
24 yuscii
25 ];
26
27 doCheck = false; # No tests.
28
29 meta = {
30 description = "Universal decoder of an encoded flow (UTF-7, ISO-8859 and KOI8) to Unicode";
31 license = lib.licenses.mit;
32 homepage = "https://github.com/mirage/rosetta";
33 maintainers = [ ];
34 };
35}