Unverified Commit 64507e0a authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

suidChroot: drop (#407947)

parents 32b2f717 2e6bfdc6
Loading
Loading
Loading
Loading
+0 −26
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchurl,
}:

stdenv.mkDerivation rec {
  pname = "suid-chroot";
  version = "1.0.2";

  src = fetchurl {
    sha256 = "1a9xqhck0ikn8kfjk338h9v1yjn113gd83q0c50k78xa68xrnxjx";
    url = "http://myweb.tiscali.co.uk/scottrix/linux/download/${pname}-${version}.tar.bz2";
  };

  postPatch = ''
    substituteInPlace Makefile --replace /usr $out
    sed -i -e '/chmod u+s/d' Makefile
  '';

  meta = with lib; {
    description = "Setuid-safe wrapper for chroot";
    license = licenses.gpl2Plus;
    platforms = with platforms; unix;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -1761,6 +1761,7 @@ mapAliases {
  StormLib = stormlib; # Added 2024-01-21
  strawberry-qt5 = throw "strawberry-qt5 has been replaced by strawberry-qt6"; # Added 2024-11-22
  strelka = throw "strelka depends on Python 2.6+, and does not support Python 3."; # Added 2025-03-17
  suidChroot = throw "'suidChroot' has been dropped as it was unmaintained, failed to build and had questionable security considerations"; # Added 2025-05-17
  sumneko-lua-language-server = lua-language-server; # Added 2023-02-07
  sumokoin = throw "sumokoin has been removed as it was abandoned upstream"; # Added 2024-11-23
  supertag = throw "supertag has been removed as it was abandoned upstream and fails to build"; # Added 2025-04-20