mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
profanity: Fix build (#56118)
This commit is contained in:
parent
a66c88f66a
commit
9aa592e9ab
@ -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…
Reference in New Issue
Block a user