mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
uwuify: init at 0.2.1
This commit is contained in:
parent
64ed9a9a99
commit
b287d4d591
23
pkgs/tools/misc/uwuify/default.nix
Normal file
23
pkgs/tools/misc/uwuify/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "uwuify";
|
||||
version = "0.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Daniel-Liu-c0deb0t";
|
||||
repo = "uwu";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-tPmLqgrWi7wDoMjMrxodKp4S0ICwV9Kp7Pa151rHho0=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-HUP6OEvoGJ/BtAl+yuGzqEp1bsxfGAh0UJtXz9/ZiK8=";
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fast text uwuifier";
|
||||
homepage = "https://github.com/Daniel-Liu-c0deb0t/uwu";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ siraben ];
|
||||
};
|
||||
}
|
@ -3352,6 +3352,8 @@ in
|
||||
|
||||
usbview = callPackage ../tools/misc/usbview { };
|
||||
|
||||
uwuify = callPackage ../tools/misc/uwuify { };
|
||||
|
||||
anthy = callPackage ../tools/inputmethods/anthy { };
|
||||
|
||||
evdevremapkeys = callPackage ../tools/inputmethods/evdevremapkeys { };
|
||||
|
Loading…
Reference in New Issue
Block a user