mrxvt: drop

Unmaintained upstream since 2012 and marked insecure in nixpkgs since 2021.
This commit is contained in:
ghpzin
2025-09-25 08:47:54 +03:00
parent b56976b4b1
commit cfd5ccac7a
3 changed files with 1 additions and 71 deletions
-2
View File
@@ -70,8 +70,6 @@ let
mlterm.pkg = p: p.mlterm;
mrxvt.pkg = p: p.mrxvt;
qterminal.pkg = p: p.lxqt.qterminal;
qterminal.kill = true;
-69
View File
@@ -1,69 +0,0 @@
{
lib,
stdenv,
fetchurl,
libX11,
libXft,
libXi,
xorgproto,
libSM,
libICE,
freetype,
pkg-config,
which,
nixosTests,
}:
stdenv.mkDerivation rec {
pname = "mrxvt";
version = "0.5.4";
src = fetchurl {
url = "mirror://sourceforge/materm/mrxvt-${version}.tar.gz";
sha256 = "1mqhmnlz32lvld9rc6c1hyz7gjw4anwf39yhbsjkikcgj1das0zl";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libX11
libXft
libXi
xorgproto
libSM
libICE
freetype
which
];
configureFlags = [
"--with-x"
"--enable-frills"
"--enable-xft"
"--enable-xim"
# "--with-term=xterm"
"--with-max-profiles=100"
"--with-max-term=100"
"--with-save-lines=10000"
];
preConfigure = ''
NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${freetype.dev}/include/freetype2";
'';
passthru.tests.test = nixosTests.terminal-emulators.mrxvt;
meta = with lib; {
description = "Lightweight multitabbed feature-rich X11 terminal emulator";
longDescription = "
Multitabbed lightweight terminal emulator based on rxvt.
Supports transparency, backgroundimages, freetype fonts, ...
";
homepage = "https://sourceforge.net/projects/materm";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ ];
knownVulnerabilities = [
"Usage of ANSI escape sequences causes unexpected newline-termination, leading to unexpected command execution (https://www.openwall.com/lists/oss-security/2021/05/17/1)"
];
};
}
+1
View File
@@ -1718,6 +1718,7 @@ mapAliases {
mpris-discord-rpc = throw "'mpris-discord-rpc' has been renamed to 'music-discord-rpc'."; # Added 2025-09-14
mq-cli = throw "'mq-cli' has been removed due to lack of upstream maintenance"; # Added 2025-01-25
mrkd = throw "'mrkd' has been removed as it is unmaintained since 2021"; # Added 2024-12-21
mrxvt = throw "'mrxvt' has been removed due to lack of maintainence upstream"; # Added 2025-09-25
msp430NewlibCross = msp430Newlib; # Added 2024-09-06
mumps_par = lib.warnOnInstantiate "mumps_par has been renamed to mumps-mpi" mumps-mpi; # Added 2025-05-07
mupdf_1_17 = throw "'mupdf_1_17' has been removed due to being outdated and insecure. Consider using 'mupdf' instead."; # Added 2024-08-22