depot/third_party/nixpkgs/pkgs/tools/misc/zalgo/default.nix
Default email bb1914a1ab Project import generated by Copybara.
GitOrigin-RevId: 733e537a8ad76fd355b6f501127f7d0eb8861775
2020-12-29 10:07:52 -05:00

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