profanity: Fix build (#56118)

wip/yesman
devhell 5 years ago committed by Vladyslav M
parent a66c88f66a
commit 9aa592e9ab
  1. 11
      pkgs/applications/networking/instant-messengers/profanity/default.nix

@ -1,6 +1,7 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib, openssl
, glibcLocales, expect, ncurses, libotr, curl, readline, libuuid
, cmocka, libmicrohttpd, stabber, expat, libmesode
, autoconf-archive
, autoAwaySupport ? true, libXScrnSaver ? null, libX11 ? null
, notifySupport ? true, libnotify ? null, gdk_pixbuf ? null
@ -32,7 +33,9 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
nativeBuildInputs = [ autoreconfHook glibcLocales pkgconfig ];
nativeBuildInputs = [
autoreconfHook autoconf-archive glibcLocales pkgconfig
];
buildInputs = [
expect readline libuuid glib openssl expat ncurses libotr
@ -58,12 +61,6 @@ stdenv.mkDerivation rec {
LC_ALL = "en_US.utf8";
NIX_CFLAGS_COMPILE = [ ]
++ optionals pythonPluginSupport [ "-I${python}/include/${python.libPrefix}" ];
LDFLAGS = [ ]
++ optionals pythonPluginSupport [ "-L${python}/lib" "-l${python.libPrefix}" ];
meta = {
description = "A console based XMPP client";
longDescription = ''

Loading…
Cancel
Save