mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
* added irssi
svn path=/nixpkgs/trunk/; revision=9051
This commit is contained in:
parent
b90010367e
commit
2527df90cd
12
pkgs/applications/networking/irc/irssi/default.nix
Normal file
12
pkgs/applications/networking/irc/irssi/default.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{stdenv, fetchurl, pkgconfig, ncurses, glib, openssl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "irssi-0.8.11";
|
||||
src = fetchurl {
|
||||
url = http://irssi.org/files/irssi-0.8.11.tar.bz2;
|
||||
sha256 = "425cf24f13bfda05c6a468523cd2874d05675ea1bc4e37a8c284f2f78c2dd6b2";
|
||||
};
|
||||
buildInputs = [pkgconfig ncurses glib openssl];
|
||||
NIX_LDFLAGS = "-lncurses";
|
||||
configureFlags = "--with-proxy --with-ncurses --enable-ssl";
|
||||
}
|
Loading…
Reference in New Issue
Block a user