teehee: init at 0.2.8

https://github.com/Gskartwii/teehee

figsoda c4484420 8d5b2633

+29
+27
pkgs/applications/editors/teehee/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "teehee"; 8 + version = "0.2.8"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "Gskartwii"; 12 + repo = "teehee"; 13 + rev = "v${version}"; 14 + hash = "sha256-yTterXAev6eOnUe1/MJV8s8dUYJcXHDKVJ6T0G/JHzI="; 15 + }; 16 + 17 + cargoHash = "sha256-hEc7MaqTXMrKiosYacPw/b1ANnfZKdlhThOp2h14fg4="; 18 + 19 + meta = with lib; { 20 + description = "A modal terminal hex editor"; 21 + homepage = "https://github.com/Gskartwii/teehee"; 22 + changelog = "https://github.com/Gskartwii/teehee/releases/tag/${src.rev}"; 23 + license = licenses.asl20; 24 + maintainers = with maintainers; [ figsoda ]; 25 + mainProgram = "teehee"; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 13670 13670 13671 13671 teamviewer = libsForQt5.callPackage ../applications/networking/remote/teamviewer { }; 13672 13672 13673 + teehee = callPackage ../applications/editors/teehee { }; 13674 + 13673 13675 teip = callPackage ../tools/text/teip { }; 13674 13676 13675 13677 telegraf = callPackage ../servers/monitoring/telegraf { };