52 lines
1.4 KiB
Nix
52 lines
1.4 KiB
Nix
{ fetchgit, libcommuni, qtbase, qmake, lib, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "communi";
|
|
version = "3.5.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/communi/communi-desktop.git";
|
|
rev = "v${version}";
|
|
sha256 = "10grskhczh8601s90ikdsbjabgr9ypcp2j7vivjkl456rmg6xbji";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
|
|
buildInputs = [ libcommuni qtbase ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
preConfigure = ''
|
|
export QMAKEFEATURES=${libcommuni}/features
|
|
'';
|
|
|
|
qmakeFlags = [
|
|
"COMMUNI_INSTALL_PREFIX=${placeholder "out"}"
|
|
"COMMUNI_INSTALL_BINS=${placeholder "out"}/bin"
|
|
"COMMUNI_INSTALL_PLUGINS=${placeholder "out"}/lib/communi/plugins"
|
|
"COMMUNI_INSTALL_ICONS=${placeholder "out"}/share/icons/hicolor"
|
|
"COMMUNI_INSTALL_DESKTOP=${placeholder "out"}/share/applications"
|
|
"COMMUNI_INSTALL_THEMES=${placeholder "out"}/share/communi/themes"
|
|
];
|
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
|
substituteInPlace "$out/share/applications/communi.desktop" \
|
|
--replace "/usr/bin" "$out/bin"
|
|
'';
|
|
|
|
preFixup = ''
|
|
rm -rf lib
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A simple and elegant cross-platform IRC client";
|
|
homepage = "https://github.com/communi/communi-desktop";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ hrdinka ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|