bitlbee: fix build
This commit is contained in:
parent
9db1f486e1
commit
798d5f5cdb
1 changed files with 3 additions and 6 deletions
|
@ -15,9 +15,6 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [ gnutls glib libotr python ]
|
buildInputs = [ gnutls glib libotr python ]
|
||||||
++ optional enableLibPurple pidgin;
|
++ optional enableLibPurple pidgin;
|
||||||
|
|
||||||
preConfigure = optionalString enableLibPurple
|
|
||||||
"export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${pidgin}/lib/pkgconfig";
|
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--gcov=1"
|
"--gcov=1"
|
||||||
"--otr=1"
|
"--otr=1"
|
||||||
|
@ -26,12 +23,12 @@ stdenv.mkDerivation rec {
|
||||||
]
|
]
|
||||||
++ optional enableLibPurple "--purple=1";
|
++ optional enableLibPurple "--purple=1";
|
||||||
|
|
||||||
buildPhase = optionalString (!enableLibPurple) ''
|
installTargets = [ "install" "install-dev" ];
|
||||||
make install-dev
|
|
||||||
'';
|
|
||||||
|
|
||||||
doCheck = !enableLibPurple; # Checks fail with libpurple for some reason
|
doCheck = !enableLibPurple; # Checks fail with libpurple for some reason
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "IRC instant messaging gateway";
|
description = "IRC instant messaging gateway";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue