From 6a960616eb42eff9d392d52abc0a339c55afd1a6 Mon Sep 17 00:00:00 2001 From: rewine Date: Tue, 1 Jul 2025 20:33:05 +0800 Subject: [PATCH] qtchan: drop --- .../networking/browsers/qtchan/default.nix | 37 ------------------- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 - 3 files changed, 1 insertion(+), 39 deletions(-) delete mode 100644 pkgs/applications/networking/browsers/qtchan/default.nix diff --git a/pkgs/applications/networking/browsers/qtchan/default.nix b/pkgs/applications/networking/browsers/qtchan/default.nix deleted file mode 100644 index 3e266f5f8712..000000000000 --- a/pkgs/applications/networking/browsers/qtchan/default.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ - 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; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index a8751dcf4c0c..c4b893beb38a 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1673,6 +1673,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 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index aaad152d625b..a9a4ff677b22 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13567,8 +13567,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 { };