nixpkgs/pkgs/applications/networking/irc/irssi/default.nix
Peter Simons 71f164ac1e Three Games and Perl Support for Irssi
Here are four patches. Three of them add expressions for games. The
fourth, irssi-perl.patch, adds perl as an input for irssi, so that one
can run perl plugins in irssi. I didn't make the perl input optional,
but maybe it should be to keep the irssi expression light.

svn path=/nixpkgs/trunk/; revision=21813
2010-05-17 09:21:42 +00:00

21 lines
469 B
Nix

{stdenv, fetchurl, pkgconfig, ncurses, glib, openssl, perl}:
stdenv.mkDerivation rec {
name = "irssi-0.8.15";
src = fetchurl {
url = "http://irssi.org/files/${name}.tar.bz2";
sha256 = "19m0aah9bhc70dnhh7kpydbsz5n35l0l9knxav1df0sic3xicbf1";
};
buildInputs = [pkgconfig ncurses glib openssl perl];
NIX_LDFLAGS = "-lncurses";
configureFlags = "--with-proxy --with-ncurses --enable-ssl";
meta = {
homepage = http://irssi.org;
};
}