irssi: build bundled OTR plug-in and remove "irssi-otr" package

This commit is contained in:
Emery Hemingway
2019-08-18 12:35:57 +02:00
parent ffbb4d26f9
commit 9a1b8bc325
3 changed files with 3 additions and 31 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, ncurses, glib, openssl, perl, libintl }:
{ stdenv, fetchurl, pkgconfig, ncurses, glib, openssl, perl, libintl, libgcrypt, libotr }:
stdenv.mkDerivation rec {
version = "1.2.1";
@@ -10,12 +10,13 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses glib openssl perl libintl ];
buildInputs = [ ncurses glib openssl perl libintl libgcrypt libotr ];
configureFlags = [
"--with-proxy"
"--with-bot"
"--with-perl=yes"
"--with-otr=yes"
"--enable-true-color"
];