Merge pull request #101428 from djanatyn/pkg/zalgo

zalgo: init at 6aa1f66
This commit is contained in:
Sandro 2020-12-28 00:18:39 +01:00 committed by GitHub
commit 6c1c442040
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View 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 ];
};
}

View File

@ -29020,6 +29020,8 @@ in
navidrome = callPackage ../servers/misc/navidrome {};
zalgo = callPackage ../tools/misc/zalgo { };
zettlr = callPackage ../applications/misc/zettlr { };
unifi-poller = callPackage ../servers/monitoring/unifi-poller {};