irssi: add second download mirror because irrsi.org is offline
(cherry picked from commit 79effb88a0d342ffc423b7044548c34c7f5c1aa4)
This commit is contained in:
parent
580032914f
commit
83096066c8
@ -2,16 +2,18 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "irssi-0.8.17";
|
name = "irssi-0.8.17";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://irssi.org/files/${name}.tar.bz2";
|
urls = [ "https://distfiles.macports.org/irssi/${name}.tar.bz2"
|
||||||
|
"http://irssi.org/files/${name}.tar.bz2"
|
||||||
|
];
|
||||||
sha256 = "01v82q2pfiimx6lh271kdvgp8hl4pahc3srg04fqzxgdsb5015iw";
|
sha256 = "01v82q2pfiimx6lh271kdvgp8hl4pahc3srg04fqzxgdsb5015iw";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig ncurses glib openssl perl libintlOrEmpty ];
|
buildInputs = [ pkgconfig ncurses glib openssl perl libintlOrEmpty ];
|
||||||
|
|
||||||
NIX_LDFLAGS = ncurses.ldflags;
|
NIX_LDFLAGS = ncurses.ldflags;
|
||||||
|
|
||||||
configureFlags = "--with-proxy --with-ncurses --enable-ssl --with-perl=yes";
|
configureFlags = "--with-proxy --with-ncurses --enable-ssl --with-perl=yes";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
Loading…
Reference in New Issue
Block a user