Unverified Commit 2ff6a8fc authored by rewine's avatar rewine Committed by GitHub
Browse files

[Backport release-25.05] qtchan: drop (#421969)

parents f81bb6b7 7c197bbf
Loading
Loading
Loading
Loading
+0 −37
Original line number Diff line number Diff line
{
  mkDerivation,
  lib,
  fetchFromGitHub,
  qmake,
  qtbase,
}:

mkDerivation rec {
  pname = "qtchan";
  version = "1.0.1";

  src = fetchFromGitHub {
    owner = "siavash119";
    repo = "qtchan";
    rev = "v${version}";
    sha256 = "1x11m1kwqindzc0dkpfifcglsb362impaxs85kgzx50p898sz9ll";
  };

  nativeBuildInputs = [ qmake ];
  buildInputs = [ qtbase ];
  qmakeFlags = [ "CONFIG-=app_bundle" ];

  installPhase = ''
    mkdir -p $out/bin
    cp qtchan $out/bin
  '';

  meta = with lib; {
    description = "4chan browser in qt5";
    mainProgram = "qtchan";
    homepage = "https://github.com/siavash119/qtchan";
    license = licenses.mit;
    maintainers = with maintainers; [ Madouura ];
    platforms = platforms.unix;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -1618,6 +1618,7 @@ mapAliases {
  qt515 = qt5; # Added 2022-11-24
  qt5ct = throw "'qt5ct' has been renamed to/replaced by 'libsForQt5.qt5ct'"; # Converted to throw 2024-10-17
  qt6ct = qt6Packages.qt6ct; # Added 2023-03-07
  qtchan = throw "'qtchan' has been removed due to lack of maintenance upstream"; # Added 2025-07-01
  qtcurve = throw "'qtcurve' has been renamed to/replaced by 'libsForQt5.qtcurve'"; # Converted to throw 2024-10-17
  qtile-unwrapped = python3.pkgs.qtile; # Added 2023-05-12
  quantum-espresso-mpi = quantum-espresso; # Added 2023-11-23
+0 −2
Original line number Diff line number Diff line
@@ -13832,8 +13832,6 @@ with pkgs;
  qtbitcointrader = libsForQt5.callPackage ../applications/misc/qtbitcointrader { };
  qtchan = libsForQt5.callPackage ../applications/networking/browsers/qtchan { };
  qtemu = libsForQt5.callPackage ../applications/virtualization/qtemu { };
  qtpass = libsForQt5.callPackage ../applications/misc/qtpass { };