3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/instant-messengers/psi-plus/default.nix

37 lines
971 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, wrapQtAppsHook
, qtbase, qtmultimedia, qtx11extras, qttools, qtwebengine
, libidn, qca2-qt5, libsecret, libXScrnSaver, hunspell
2018-09-04 09:39:13 +01:00
, libgcrypt, libotr, html-tidy, libgpgerror, libsignal-protocol-c
2017-03-07 13:21:38 +00:00
}:
stdenv.mkDerivation rec {
pname = "psi-plus";
2020-08-16 06:35:38 +01:00
version = "1.4.1473";
2017-03-07 13:21:38 +00:00
src = fetchFromGitHub {
owner = "psi-plus";
repo = "psi-plus-snapshots";
2019-09-09 00:38:31 +01:00
rev = version;
2020-08-16 06:35:38 +01:00
sha256 = "03f28zwbjn6fnsm0fqg8lmc11rpfdfvzjf7k7xydc3lzy8pxbds5";
2017-03-07 13:21:38 +00:00
};
2017-03-09 02:17:40 +00:00
cmakeFlags = [
"-DENABLE_PLUGINS=ON"
];
nativeBuildInputs = [ cmake wrapQtAppsHook ];
2017-03-07 13:21:38 +00:00
2017-03-09 01:33:32 +00:00
buildInputs = [
qtbase qtmultimedia qtx11extras qttools qtwebengine
libidn qca2-qt5 libsecret libXScrnSaver hunspell
2018-09-04 09:39:13 +01:00
libgcrypt libotr html-tidy libgpgerror libsignal-protocol-c
2017-03-09 01:33:32 +00:00
];
2017-03-07 13:21:38 +00:00
meta = with stdenv.lib; {
description = "XMPP (Jabber) client";
maintainers = with maintainers; [ orivej misuzu ];
2018-09-04 08:41:08 +01:00
license = licenses.gpl2;
2017-03-07 13:21:38 +00:00
platforms = platforms.linux;
};
}