lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 24 lines 710 B view raw
1{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv }: 2 3rustPlatform.buildRustPackage rec { 4 pname = "uwuify"; 5 version = "0.2.2"; 6 7 src = fetchFromGitHub { 8 owner = "Daniel-Liu-c0deb0t"; 9 repo = "uwu"; 10 rev = "v${version}"; 11 sha256 = "sha256-MzXObbxccwEG7egmQMCdhUukGqZS+NgbYwZjTaqME7I="; 12 }; 13 14 cargoSha256 = "sha256-1BoB7K/dWy3AbogvHIDLrdPD7K54EISvn4RVU5RLTi4="; 15 buildInputs = lib.optionals stdenv.isDarwin [ libiconv ]; 16 17 meta = with lib; { 18 description = "Fast text uwuifier"; 19 homepage = "https://github.com/Daniel-Liu-c0deb0t/uwu"; 20 license = licenses.mit; 21 platforms = lib.platforms.x86; # uses SSE instructions 22 maintainers = with maintainers; [ siraben ]; 23 }; 24}