mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
Merge pull request #101428 from djanatyn/pkg/zalgo
zalgo: init at 6aa1f66
This commit is contained in:
commit
6c1c442040
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -29020,6 +29020,8 @@ in
|
|||||||
|
|
||||||
navidrome = callPackage ../servers/misc/navidrome {};
|
navidrome = callPackage ../servers/misc/navidrome {};
|
||||||
|
|
||||||
|
zalgo = callPackage ../tools/misc/zalgo { };
|
||||||
|
|
||||||
zettlr = callPackage ../applications/misc/zettlr { };
|
zettlr = callPackage ../applications/misc/zettlr { };
|
||||||
|
|
||||||
unifi-poller = callPackage ../servers/monitoring/unifi-poller {};
|
unifi-poller = callPackage ../servers/monitoring/unifi-poller {};
|
||||||
|
Loading…
Reference in New Issue
Block a user