forked from mirrors/nixpkgs
37 lines
971 B
Nix
37 lines
971 B
Nix
{ stdenv, fetchFromGitHub, cmake, wrapQtAppsHook
|
|
, qtbase, qtmultimedia, qtx11extras, qttools, qtwebengine
|
|
, libidn, qca2-qt5, libsecret, libXScrnSaver, hunspell
|
|
, libgcrypt, libotr, html-tidy, libgpgerror, libsignal-protocol-c
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "psi-plus";
|
|
version = "1.4.1473";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "psi-plus";
|
|
repo = "psi-plus-snapshots";
|
|
rev = version;
|
|
sha256 = "03f28zwbjn6fnsm0fqg8lmc11rpfdfvzjf7k7xydc3lzy8pxbds5";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DENABLE_PLUGINS=ON"
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake wrapQtAppsHook ];
|
|
|
|
buildInputs = [
|
|
qtbase qtmultimedia qtx11extras qttools qtwebengine
|
|
libidn qca2-qt5 libsecret libXScrnSaver hunspell
|
|
libgcrypt libotr html-tidy libgpgerror libsignal-protocol-c
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "XMPP (Jabber) client";
|
|
maintainers = with maintainers; [ orivej misuzu ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|