qxmpp: 1.10.0 -> 1.10.1

This commit is contained in:
Astro
2025-02-26 19:27:21 +01:00
parent 0196c0175e
commit c775a485f7
2 changed files with 11 additions and 8 deletions
+10 -7
View File
@@ -1,28 +1,30 @@
{ mkDerivation
{ stdenv
, lib
, fetchFromGitHub
, cmake
, pkg-config
, wrapQtAppsNoGuiHook
, qtbase
, qca
, withGstreamer ? true
, gst_all_1
, withOmemo ? true
, qca-qt5
, libomemo-c
}:
mkDerivation rec {
stdenv.mkDerivation rec {
pname = "qxmpp";
version = "1.10.0";
version = "1.10.1";
src = fetchFromGitHub {
owner = "qxmpp-project";
repo = pname;
rev = "v${version}";
sha256 = "sha256-pM0KxYoGMIukj5SX1MX5v4VJz5/zwNmaLP717o5++Ec=";
hash = "sha256-mb8JMBV5M+0hFJLTxwYE47jB/FJKi/MPUwd3Nhan+QQ=";
};
nativeBuildInputs = [
cmake
cmake wrapQtAppsNoGuiHook
] ++ lib.optionals (withGstreamer || withOmemo) [
pkg-config
];
@@ -32,7 +34,8 @@ mkDerivation rec {
gst-plugins-base
gst-plugins-good
]) ++ lib.optionals withOmemo [
qca-qt5
qtbase
qca
libomemo-c
];
cmakeFlags = [
+1 -1
View File
@@ -9017,7 +9017,7 @@ with pkgs;
inherit (darwin.apple_sdk_12_3.libs) xpc;
});
qxmpp = libsForQt5.callPackage ../development/libraries/qxmpp { };
qxmpp = qt6Packages.callPackage ../development/libraries/qxmpp { };
gnu-efi = if stdenv.hostPlatform.isEfi
then callPackage ../development/libraries/gnu-efi { }