communi: fix output paths
This commit is contained in:
parent
5603159c4f
commit
48dde66cd7
@ -1,5 +1,4 @@
|
|||||||
{ fetchgit, libcommuni, qt5, stdenv
|
{ fetchgit, libcommuni, makeQtWrapper, qt5, stdenv }:
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "communi-${version}";
|
name = "communi-${version}";
|
||||||
@ -11,20 +10,32 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0gk6gck09zb44qfsal7bs4ln2vl9s9x3vfxh7jvfc7mmf7l3sspd";
|
sha256 = "0gk6gck09zb44qfsal7bs4ln2vl9s9x3vfxh7jvfc7mmf7l3sspd";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeQtWrapper ];
|
||||||
|
|
||||||
buildInputs = [ libcommuni qt5.qtbase ];
|
buildInputs = [ libcommuni qt5.qtbase ];
|
||||||
|
|
||||||
enableParallelBuild = true;
|
enableParallelBuild = true;
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
export QMAKEFEATURES=${libcommuni}/features
|
export QMAKEFEATURES=${libcommuni}/features
|
||||||
qmake -r COMMUNI_INSTALL_PREFIX=$out
|
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
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapQtProgram "$out/bin/communi"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A simple and elegant cross-platform IRC client";
|
description = "A simple and elegant cross-platform IRC client";
|
||||||
homepage = https://github.com/communi/communi-desktop;
|
homepage = https://github.com/communi/communi-desktop;
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = platforms.all;
|
|
||||||
maintainers = with maintainers; [ hrdinka ];
|
maintainers = with maintainers; [ hrdinka ];
|
||||||
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -11729,7 +11729,7 @@ let
|
|||||||
pulseaudioSupport = config.pulseaudio or false;
|
pulseaudioSupport = config.pulseaudio or false;
|
||||||
};
|
};
|
||||||
|
|
||||||
communi = callPackage ../applications/networking/irc/communi { };
|
communi = qt5.callPackage ../applications/networking/irc/communi { };
|
||||||
|
|
||||||
CompBus = callPackage ../applications/audio/CompBus { };
|
CompBus = callPackage ../applications/audio/CompBus { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user