2017-05-17 20:26:11 +01:00
|
|
|
{ fetchgit, libcommuni, qtbase, qmake, stdenv }:
|
2016-01-10 11:01:48 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "communi-${version}";
|
2017-08-29 11:45:39 +01:00
|
|
|
version = "3.5.0";
|
2016-01-10 11:01:48 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/communi/communi-desktop.git";
|
2017-08-29 11:45:39 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "10grskhczh8601s90ikdsbjabgr9ypcp2j7vivjkl456rmg6xbji";
|
2016-08-29 15:43:10 +01:00
|
|
|
fetchSubmodules = true;
|
2016-01-10 11:01:48 +00:00
|
|
|
};
|
|
|
|
|
2017-05-17 20:26:11 +01:00
|
|
|
nativeBuildInputs = [ qmake ];
|
2016-03-08 12:35:03 +00:00
|
|
|
|
2016-04-16 20:59:20 +01:00
|
|
|
buildInputs = [ libcommuni qtbase ];
|
2016-01-10 11:01:48 +00:00
|
|
|
|
2016-09-01 09:46:11 +01:00
|
|
|
enableParallelBuilding = true;
|
2016-01-10 11:01:48 +00:00
|
|
|
|
2016-04-16 20:59:20 +01:00
|
|
|
preConfigure = ''
|
2016-01-10 11:01:48 +00:00
|
|
|
export QMAKEFEATURES=${libcommuni}/features
|
2016-04-16 20:59:20 +01:00
|
|
|
qmakeFlags="$qmakeFlags \
|
2016-03-08 12:35:03 +00:00
|
|
|
COMMUNI_INSTALL_PREFIX=$out \
|
|
|
|
COMMUNI_INSTALL_BINS=$out/bin \
|
|
|
|
COMMUNI_INSTALL_PLUGINS=$out/lib/communi/plugins \
|
|
|
|
COMMUNI_INSTALL_ICONS=$out/share/icons/hicolor \
|
|
|
|
COMMUNI_INSTALL_DESKTOP=$out/share/applications \
|
|
|
|
COMMUNI_INSTALL_THEMES=$out/share/communi/themes
|
2016-04-16 20:59:20 +01:00
|
|
|
"
|
2016-03-08 12:35:03 +00:00
|
|
|
'';
|
|
|
|
|
2018-03-17 13:46:02 +00:00
|
|
|
postInstall = stdenv.lib.optionalString stdenv.isLinux ''
|
2016-03-16 14:23:10 +00:00
|
|
|
substituteInPlace "$out/share/applications/communi.desktop" \
|
|
|
|
--replace "/usr/bin" "$out/bin"
|
2016-01-10 11:01:48 +00:00
|
|
|
'';
|
|
|
|
|
2017-06-18 12:39:18 +01:00
|
|
|
preFixup = ''
|
2017-08-29 11:45:39 +01:00
|
|
|
rm -rf lib
|
2016-08-29 15:43:10 +01:00
|
|
|
'';
|
|
|
|
|
2016-01-10 11:01:48 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A simple and elegant cross-platform IRC client";
|
|
|
|
homepage = https://github.com/communi/communi-desktop;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ hrdinka ];
|
2016-03-08 12:35:03 +00:00
|
|
|
platforms = platforms.all;
|
2016-01-10 11:01:48 +00:00
|
|
|
};
|
|
|
|
}
|