nixpkgs/pkgs/applications/networking/irc/communi/default.nix
aszlig 0fefa9939e
communi: Fix running of {pre,post}Configure
Commit 0055c6a introduced a new preConfigure hook that sets the right
qmake path. Unfortunately the mkDerivation attributes of communi
override the whole configurePhase, so this hook isn't run at all.

This fixes the build of communi and it now successfully compiles on my
machine.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2016-04-15 05:26:02 +02:00

46 lines
1.3 KiB
Nix

{ fetchgit, libcommuni, makeQtWrapper, qt5, stdenv }:
stdenv.mkDerivation rec {
name = "communi-${version}";
version = "2016-01-03";
src = fetchgit {
url = "https://github.com/communi/communi-desktop.git";
rev = "ad1b9a30ed6c51940c0d2714b126a32b5d68c876";
sha256 = "0gk6gck09zb44qfsal7bs4ln2vl9s9x3vfxh7jvfc7mmf7l3sspd";
};
nativeBuildInputs = [ makeQtWrapper ];
buildInputs = [ libcommuni qt5.qtbase ];
enableParallelBuild = true;
configurePhase = ''
runHook preConfigure
export QMAKEFEATURES=${libcommuni}/features
qmake -r \
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
runHook postConfigure
'';
postInstall = ''
wrapQtProgram "$out/bin/communi"
substituteInPlace "$out/share/applications/communi.desktop" \
--replace "/usr/bin" "$out/bin"
'';
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 ];
platforms = platforms.all;
};
}