mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 12:34:00 +00:00
53 lines
1.3 KiB
Nix
53 lines
1.3 KiB
Nix
{ lib, mkDerivation, fetchFromGitHub, cmake
|
|
, qtbase, qtmultimedia, qtx11extras, qttools, qtwebengine
|
|
, libidn, qca-qt5, libXScrnSaver, hunspell
|
|
, libsecret, libgcrypt, libotr, html-tidy, libgpgerror, libsignal-protocol-c
|
|
, usrsctp
|
|
|
|
# Voice messages
|
|
, voiceMessagesSupport ? true
|
|
, gst_all_1
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "psi-plus";
|
|
version = "1.5.1549";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "psi-plus";
|
|
repo = "psi-plus-snapshots";
|
|
rev = version;
|
|
sha256 = "0jpv6qzfg6xjwkrnci7fav27nxm174i9l5g4vmsbchqpwfk90z2m";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DENABLE_PLUGINS=ON"
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake qttools ];
|
|
|
|
buildInputs = [
|
|
qtbase qtmultimedia qtx11extras qtwebengine
|
|
libidn qca-qt5 libXScrnSaver hunspell
|
|
libsecret libgcrypt libotr html-tidy libgpgerror libsignal-protocol-c
|
|
usrsctp
|
|
] ++ lib.optionals voiceMessagesSupport [
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-good
|
|
];
|
|
|
|
preFixup = lib.optionalString voiceMessagesSupport ''
|
|
qtWrapperArgs+=(
|
|
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://psi-plus.com";
|
|
description = "XMPP (Jabber) client";
|
|
maintainers = with maintainers; [ orivej misuzu unclechu ];
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|