mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
533540bb99
qt4 -> qt5 (cherry picked from commit 2c2ebf360333dedcdc1400c5f024425cf7fc5947) Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
50 lines
918 B
Nix
50 lines
918 B
Nix
{ stdenv, lib, fetchFromGitHub
|
|
, qtbase
|
|
, qttools
|
|
, qtx11extras
|
|
, qtmultimedia
|
|
, qtwebkit
|
|
, wrapQtAppsHook
|
|
, cmake
|
|
, openssl
|
|
, xorgproto, libX11, libXScrnSaver
|
|
, xz, zlib
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "vacuum-im";
|
|
version = "unstable-2021-12-09";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Vacuum-IM";
|
|
repo = "vacuum-im";
|
|
rev = "0abd5e11dd3e2538b8c47f5a06febedf73ae99ee";
|
|
sha256 = "0l9pln07zz874m1r6wnpc9vcdbpgvjdsy49cjjilc6s4p4b2c812";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
wrapQtAppsHook
|
|
cmake
|
|
];
|
|
buildInputs = [
|
|
qtbase
|
|
qttools
|
|
qtx11extras
|
|
qtmultimedia
|
|
qtwebkit
|
|
openssl
|
|
xorgproto
|
|
libX11
|
|
libXScrnSaver
|
|
xz
|
|
zlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "An XMPP client fully composed of plugins";
|
|
maintainers = [ maintainers.raskin ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl3;
|
|
homepage = "http://www.vacuum-im.org";
|
|
};
|
|
}
|