mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
silc-client: the irssi plugin segfaults on join, with current irssi.
I fix and make it build the standalone client.
This commit is contained in:
parent
0b4e664a24
commit
7b6a4238b1
1 changed files with 6 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
{ stdenv, fetchurl, perl, pkgconfig, glib, ncurses
|
||||
, enablePlugin ? true }:
|
||||
, enablePlugin ? false }:
|
||||
|
||||
# Enabling the plugin and using it with a recent irssi, segafults on join:
|
||||
# http://marc.info/?l=silc-devel&m=125610477802211
|
||||
|
||||
let
|
||||
basename = "silc-client-1.1.8";
|
||||
|
@ -16,6 +19,8 @@ stdenv.mkDerivation {
|
|||
|
||||
patches = [ ./server_setup.patch ];
|
||||
|
||||
configureFlags = "--with-ncurses=${ncurses}";
|
||||
|
||||
preConfigure = stdenv.lib.optionalString enablePlugin ''
|
||||
configureFlags="$configureFlags --with-silc-plugin=$out/lib/irssi"
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue