libsForQt5.libquotient: drop (#422533)

This commit is contained in:
K900 2025-07-05 10:14:52 +03:00 committed by GitHub
commit b15fe57cfa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 4 additions and 183 deletions

View File

@ -108,7 +108,6 @@ let
grantleetheme = callPackage ./grantleetheme { };
gwenview = callPackage ./gwenview { };
incidenceeditor = callPackage ./incidenceeditor.nix { };
itinerary = callPackage ./itinerary.nix { };
juk = callPackage ./juk.nix { };
kaccounts-integration = callPackage ./kaccounts-integration.nix { };
kaccounts-providers = callPackage ./kaccounts-providers.nix { };
@ -271,7 +270,6 @@ let
krecorder = callPackage ./krecorder.nix { };
ktrip = callPackage ./ktrip.nix { };
kweather = callPackage ./kweather.nix { };
neochat = callPackage ./neochat.nix { };
plasmatube = callPackage ./plasmatube { };
qmlkonsole = callPackage ./qmlkonsole.nix { };
telly-skout = callPackage ./telly-skout.nix { };

View File

@ -1,73 +0,0 @@
{
mkDerivation,
lib,
extra-cmake-modules,
karchive,
kcalendarcore,
kcontacts,
kdbusaddons,
kfilemetadata,
kholidays,
kio,
kirigami-addons,
kitemmodels,
kitinerary,
kmime,
knotifications,
kosmindoormap,
kpkpass,
kpublictransport,
kunitconversion,
libquotient,
networkmanager-qt,
prison,
qqc2-desktop-style,
qtpositioning,
qtquickcontrols2,
shared-mime-info,
}:
mkDerivation {
pname = "itinerary";
outputs = [
"out"
"dev"
];
nativeBuildInputs = [
extra-cmake-modules
shared-mime-info # for update-mime-database
];
buildInputs = [
karchive
kcalendarcore
kcontacts
kdbusaddons
kfilemetadata
kholidays
kio
kirigami-addons
kitemmodels
kitinerary
kmime
knotifications
kosmindoormap
kpkpass
kpublictransport
kunitconversion
libquotient
networkmanager-qt
prison
qqc2-desktop-style
qtpositioning
qtquickcontrols2
];
meta.license = with lib.licenses; [
asl20
bsd3
cc0
lgpl2Plus
];
}

View File

@ -1,77 +0,0 @@
{
mkDerivation,
lib,
cmake,
extra-cmake-modules,
pkg-config,
wrapQtAppsHook,
cmark,
kconfig,
kdbusaddons,
ki18n,
kio,
kirigami-addons,
kirigami2,
kitemmodels,
knotifications,
kquickcharts,
kquickimageedit,
libpulseaudio,
libquotient,
libsecret,
olm,
qcoro,
qqc2-desktop-style,
qtgraphicaleffects,
qtlocation,
qtmultimedia,
qtquickcontrols2,
sonnet,
}:
mkDerivation {
pname = "neochat";
nativeBuildInputs = [
cmake
extra-cmake-modules
pkg-config
wrapQtAppsHook
];
buildInputs = [
cmark
kconfig
kdbusaddons
kio
ki18n
kirigami-addons
kirigami2
kitemmodels
knotifications
kquickcharts
kquickimageedit
libpulseaudio
libquotient
libsecret
olm
qcoro
qtgraphicaleffects
qtlocation
qtmultimedia
qtquickcontrols2
qqc2-desktop-style
sonnet
];
meta = with lib; {
description = "Client for matrix, the decentralized communication protocol";
mainProgram = "neochat";
homepage = "https://apps.kde.org/en/neochat";
license = licenses.gpl3Only;
maintainers = with maintainers; [ peterhoeg ];
platforms = with platforms; linux;
};
}

View File

@ -331,14 +331,6 @@
name = "incidenceeditor-23.08.5.tar.xz";
};
};
itinerary = {
version = "23.08.5";
src = fetchurl {
url = "${mirror}/stable/release-service/23.08.5/src/itinerary-23.08.5.tar.xz";
sha256 = "19r7k64a4dalarxm7j2jf2p86cnxqxah0iqj68ibazhl1sdqrqs2";
name = "itinerary-23.08.5.tar.xz";
};
};
juk = {
version = "23.08.5";
src = fetchurl {
@ -1747,14 +1739,6 @@
name = "minuet-23.08.5.tar.xz";
};
};
neochat = {
version = "23.08.5";
src = fetchurl {
url = "${mirror}/stable/release-service/23.08.5/src/neochat-23.08.5.tar.xz";
sha256 = "0cj6j08g5ng1vifpb49rks9kp4mfb3h466n6afw9dk0xxgccc06k";
name = "neochat-23.08.5.tar.xz";
};
};
okular = {
version = "23.08.5";
src = fetchurl {

View File

@ -115,14 +115,6 @@
name = "kweather-23.01.0.tar.xz";
};
};
neochat = {
version = "23.01.0";
src = fetchurl {
url = "${mirror}/stable/plasma-mobile/23.01.0/neochat-23.01.0.tar.xz";
sha256 = "0pkas8whwy1ih4sx9vaa7k55iiiy955dh4d53i4l1d0sjdf8pysd";
name = "neochat-23.01.0.tar.xz";
};
};
plasma-dialer = {
version = "23.01.0";
src = fetchurl {

View File

@ -10,9 +10,6 @@
qtkeychain,
}:
let
isQt6 = lib.versions.major qtbase.version == "6";
in
stdenv.mkDerivation rec {
pname = "libquotient";
version = "0.9.1";
@ -41,7 +38,6 @@ stdenv.mkDerivation rec {
cmakeFlags = [
"-DQuotient_ENABLE_E2EE=ON"
(lib.cmakeBool "BUILD_WITH_QT6" isQt6)
];
# https://github.com/quotient-im/libQuotient/issues/551

View File

@ -186,6 +186,9 @@ let
inherit (libsForQt5)
sddm
neochat # added 2025-07-04
itinerary # added 2025-07-04
libquotient # added 2025-07-04
;
};
@ -1052,7 +1055,7 @@ mapAliases {
libpseudo = throw "'libpseudo' was removed as it is broken and not maintained upstream"; # Added 2025-05-17
libpulseaudio-vanilla = libpulseaudio; # Added 2022-04-20
libqt5pas = libsForQt5.libqtpas; # Added 2024-12-25
libquotient = libsForQt5.libquotient; # Added 2023-11-11
libquotient = throw "'libquotient' for qt5 was removed as upstream removed qt5 support. Consider explicitly upgrading to qt6 'libquotient'"; # Converted to throw 2025-07-04
librarian-puppet-go = throw "'librarian-puppet-go' has been removed, as its upstream is unmaintained"; # Added 2024-06-10
librdf = throw "'librdf' has been renamed to/replaced by 'lrdf'"; # Converted to throw 2024-10-17
librdf_raptor = throw "librdf_raptor has been remove due to failing to build and being unmaintained"; # Added 2025-04-14

View File

@ -202,8 +202,6 @@ makeScopeWithSplicing' {
libqtpas = callPackage ../development/compilers/fpc/libqtpas.nix { };
libquotient = callPackage ../development/libraries/libquotient { };
libqaccessibilityclient = callPackage ../development/libraries/libqaccessibilityclient { };
mapbox-gl-native = libsForQt5.callPackage ../development/libraries/mapbox-gl-native { };