2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, fetchFromGitHub
|
2016-04-16 16:36:53 -07:00
|
|
|
, qt4, qmake4Hook, openssl
|
2018-12-30 19:40:47 -08:00
|
|
|
, xorgproto, libX11, libXScrnSaver
|
2016-03-23 07:17:22 -07:00
|
|
|
, xz, zlib
|
2016-02-22 00:57:20 -08:00
|
|
|
}:
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "vacuum-im";
|
2017-09-06 02:42:20 -07:00
|
|
|
version = "1.3.0.20160104";
|
2016-02-22 00:57:20 -08:00
|
|
|
|
2017-09-06 02:42:20 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Vacuum-IM";
|
|
|
|
repo = "vacuum-im";
|
|
|
|
rev = "1.3.0.20160104-Alpha";
|
|
|
|
sha256 = "1jcw9c7s75y4c3m4skfc3cc0i519z39b23n997vj5mwcjplxyc76";
|
2010-09-20 01:40:30 -07:00
|
|
|
};
|
|
|
|
|
2016-02-22 00:57:20 -08:00
|
|
|
buildInputs = [
|
2018-12-30 19:40:47 -08:00
|
|
|
qt4 openssl xorgproto libX11 libXScrnSaver xz zlib
|
2016-02-22 00:57:20 -08:00
|
|
|
];
|
|
|
|
|
2016-08-09 14:09:28 -07:00
|
|
|
# hack: needed to fix build issues in
|
2020-04-18 13:51:19 -07:00
|
|
|
# https://hydra.nixos.org/build/38322959/nixlog/1
|
2016-08-09 14:09:28 -07:00
|
|
|
# should be an upstream issue but it's easy to fix
|
|
|
|
NIX_LDFLAGS = "-lz";
|
|
|
|
|
2016-04-16 16:36:53 -07:00
|
|
|
nativeBuildInputs = [ qmake4Hook ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
qmakeFlags="$qmakeFlags INSTALL_PREFIX=$out"
|
2016-03-23 07:17:22 -07:00
|
|
|
'';
|
|
|
|
|
2016-03-28 08:16:29 -07:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2016-02-22 00:57:20 -08:00
|
|
|
meta = with stdenv.lib; {
|
2010-09-20 01:40:30 -07:00
|
|
|
description = "An XMPP client fully composed of plugins";
|
2016-03-23 07:17:22 -07:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.vacuum-im.org";
|
2010-09-20 01:40:30 -07:00
|
|
|
};
|
2016-02-22 00:57:20 -08:00
|
|
|
}
|