termplay: remove

Author passed away in 2021.

Link: https://www.redox-os.org/news/open-source-mental-health/

+1 -47
-47
pkgs/by-name/te/termplay/package.nix
··· 1 - { 2 - rustPlatform, 3 - fetchFromGitLab, 4 - lib, 5 - makeWrapper, 6 - gst_all_1, 7 - libsixel, 8 - }: 9 - 10 - rustPlatform.buildRustPackage rec { 11 - pname = "termplay"; 12 - version = "2.0.6"; 13 - 14 - src = fetchFromGitLab { 15 - owner = "jD91mZM2"; 16 - repo = "termplay"; 17 - rev = "v${version}"; 18 - sha256 = "1w7hdqgqr1jgxid3k7f2j52wz31gv8bzr9rsm6xzp7nnihp6i45p"; 19 - }; 20 - 21 - cargoHash = "sha256-i7toHEewkpQ85aj4PK4SLJQCfUllUqkqIWLaOEk3NyI="; 22 - 23 - nativeBuildInputs = [ makeWrapper ]; 24 - buildInputs = [ 25 - gst_all_1.gstreamer 26 - gst_all_1.gst-plugins-base 27 - gst_all_1.gst-plugins-good 28 - gst_all_1.gst-plugins-ugly 29 - gst_all_1.gst-plugins-bad 30 - libsixel 31 - ]; 32 - 33 - buildFeatures = [ "bin" ]; 34 - 35 - postInstall = '' 36 - wrapProgram $out/bin/termplay --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" 37 - ''; 38 - 39 - meta = with lib; { 40 - description = "Play an image/video in your terminal"; 41 - homepage = "https://jd91mzm2.github.io/termplay/"; 42 - license = licenses.mit; 43 - maintainers = [ ]; 44 - platforms = platforms.unix; 45 - mainProgram = "termplay"; 46 - }; 47 - }
+1
pkgs/top-level/aliases.nix
··· 1376 1376 temurin-jre-bin-22 = throw "Temurin 22 has been removed as it has reached its end of life"; # Added 2024-09-24 1377 1377 temurin-bin-22 = throw "Temurin 22 has been removed as it has reached its end of life"; # Added 2024-09-24 1378 1378 tepl = libgedit-tepl; # Added 2024-04-29 1379 + termplay = throw "'termplay' has been removed due to lack of maintenance upstream"; # Added 2025-01-25 1379 1380 testVersion = testers.testVersion; # Added 2022-04-20 1380 1381 tfplugindocs = terraform-plugin-docs; # Added 2023-11-01 1381 1382 invalidateFetcherByDrvHash = testers.invalidateFetcherByDrvHash; # Added 2022-05-05