mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
83096066c8
(cherry picked from commit 79effb88a0
)
25 lines
709 B
Nix
25 lines
709 B
Nix
{ stdenv, fetchurl, pkgconfig, ncurses, glib, openssl, perl, libintlOrEmpty }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "irssi-0.8.17";
|
|
|
|
src = fetchurl {
|
|
urls = [ "https://distfiles.macports.org/irssi/${name}.tar.bz2"
|
|
"http://irssi.org/files/${name}.tar.bz2"
|
|
];
|
|
sha256 = "01v82q2pfiimx6lh271kdvgp8hl4pahc3srg04fqzxgdsb5015iw";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig ncurses glib openssl perl libintlOrEmpty ];
|
|
|
|
NIX_LDFLAGS = ncurses.ldflags;
|
|
|
|
configureFlags = "--with-proxy --with-ncurses --enable-ssl --with-perl=yes";
|
|
|
|
meta = {
|
|
homepage = http://irssi.org;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
|
|
};
|
|
}
|