anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / networking / instant-messengers / vacuum / default.nix
blobfffda2fedfa84eab96db2fd95dbd7d06bac65825
1 { stdenv, lib, fetchFromGitHub
2 , qtbase
3 , qttools
4 , qtx11extras
5 , qtmultimedia
6 , qtwebkit
7 , wrapQtAppsHook
8 , cmake
9 , openssl
10 , xorgproto, libX11, libXScrnSaver
11 , xz, zlib
13 stdenv.mkDerivation {
14   pname = "vacuum-im";
15   version = "unstable-2021-12-09";
17   src = fetchFromGitHub {
18     owner = "Vacuum-IM";
19     repo = "vacuum-im";
20     rev = "0abd5e11dd3e2538b8c47f5a06febedf73ae99ee";
21     sha256 = "0l9pln07zz874m1r6wnpc9vcdbpgvjdsy49cjjilc6s4p4b2c812";
22   };
24   nativeBuildInputs = [
25     wrapQtAppsHook
26     cmake
27   ];
28   buildInputs = [
29     qtbase
30     qttools
31     qtx11extras
32     qtmultimedia
33     qtwebkit
34     openssl
35     xorgproto
36     libX11
37     libXScrnSaver
38     xz
39     zlib
40   ];
42   meta = with lib; {
43     description = "XMPP client fully composed of plugins";
44     maintainers = [ maintainers.raskin ];
45     platforms = platforms.linux;
46     license = licenses.gpl3;
47     homepage = "http://www.vacuum-im.org";
48   };