zalgo: init at unstable-2020-08-26
Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: Nikolay Korotkiy <sikmir@gmail.com> Co-authored-by: Ivar <41924494+IvarWithoutBones@users.noreply.github.com>
This commit is contained in:
parent
8a1fdce8d3
commit
383bd9f62f
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/misc/zalgo/default.nix
Normal file
25
pkgs/tools/misc/zalgo/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "zalgo";
|
||||
version = "unstable-2020-08-26";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lunasorcery";
|
||||
repo = "zalgo";
|
||||
rev = "6aa1f66cfe183f8164a666730dfeaf39133cf01a";
|
||||
sha256 = "00q56yvfcj2f89wllrckvizihivqmd6l77nihb52ffqd99rdd24w";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 zalgo -t $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Read stdin and corrupt it with combining diacritics";
|
||||
homepage = "https://github.com/lunasorcery/zalgo";
|
||||
license = licenses.unfree;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ djanatyn ];
|
||||
};
|
||||
}
|
|
@ -28342,6 +28342,8 @@ in
|
|||
|
||||
navidrome = callPackage ../servers/misc/navidrome {};
|
||||
|
||||
zalgo = callPackage ../tools/misc/zalgo { };
|
||||
|
||||
zettlr = callPackage ../applications/misc/zettlr { };
|
||||
|
||||
unifi-poller = callPackage ../servers/monitoring/unifi-poller {};
|
||||
|
|
Loading…
Reference in a new issue