mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
383bd9f62f
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>
26 lines
653 B
Nix
26 lines
653 B
Nix
{ 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 ];
|
|
};
|
|
}
|