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 ]
|
||||
++ optional enableLibPurple pidgin;
|
||||
|
||||
preConfigure = optionalString enableLibPurple
|
||||
"export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${pidgin}/lib/pkgconfig";
|
||||
|
||||
configureFlags = [
|
||||
"--gcov=1"
|
||||
"--otr=1"
|
||||
|
@ -26,12 +23,12 @@ stdenv.mkDerivation rec {
|
|||
]
|
||||
++ optional enableLibPurple "--purple=1";
|
||||
|
||||
buildPhase = optionalString (!enableLibPurple) ''
|
||||
make install-dev
|
||||
'';
|
||||
installTargets = [ "install" "install-dev" ];
|
||||
|
||||
doCheck = !enableLibPurple; # Checks fail with libpurple for some reason
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
description = "IRC instant messaging gateway";
|
||||
|
||||
|
|
Loading…
Reference in a new issue