71f164ac1e
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
21 lines
469 B
Nix
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;
|
|
};
|
|
}
|