Merge pull request #177772 from fabaff/irssi-bump
irssi: 1.2.3 -> 1.4.1
This commit is contained in:
commit
b695e7dd8b
1 changed files with 46 additions and 29 deletions
|
@ -1,40 +1,57 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config, ncurses, glib, openssl, perl, libintl, libgcrypt, libotr, git }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, glib
|
||||||
|
, libgcrypt
|
||||||
|
, libintl
|
||||||
|
, libotr
|
||||||
|
, libtool
|
||||||
|
, meson
|
||||||
|
, ncurses
|
||||||
|
, ninja
|
||||||
|
, openssl
|
||||||
|
, perl
|
||||||
|
, pkg-config
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "irssi";
|
pname = "irssi";
|
||||||
version = "1.2.3";
|
version = "1.4.1";
|
||||||
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
"owner" = "irssi";
|
owner = "irssi";
|
||||||
"repo" = "irssi";
|
repo = "irssi";
|
||||||
"rev" = "91dc3e4dfa1a9558c5a7fe0ea982cb9df0e2de65";
|
rev = version;
|
||||||
"sha256" = "efnE4vuDd7TnOBxMPduiV0/nez1jVhTjbJ0vzN4ZMcg=";
|
hash = "sha256-HLcIhAZoJfCHoSNQCpoytBR0zmiZd919FcKWCl35G0A=";
|
||||||
"leaveDotGit" = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config autoconf automake libtool git ];
|
nativeBuildInputs = [
|
||||||
buildInputs = [ ncurses glib openssl perl libintl libgcrypt libotr ];
|
meson
|
||||||
|
ninja
|
||||||
enableParallelBuilding = true;
|
pkg-config
|
||||||
|
|
||||||
preConfigure = ''
|
|
||||||
NOCONFIGURE=1 ./autogen.sh
|
|
||||||
'';
|
|
||||||
|
|
||||||
configureFlags = [
|
|
||||||
"--with-proxy"
|
|
||||||
"--with-bot"
|
|
||||||
"--with-perl=yes"
|
|
||||||
"--with-otr=yes"
|
|
||||||
"--enable-true-color"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
buildInputs = [
|
||||||
|
glib
|
||||||
|
libgcrypt
|
||||||
|
libintl
|
||||||
|
libotr
|
||||||
|
ncurses
|
||||||
|
openssl
|
||||||
|
perl
|
||||||
|
];
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"-Dwith-proxy=yes"
|
||||||
|
"-Dwith-bot=yes"
|
||||||
|
"-Dwith-perl=yes"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Terminal based IRC client";
|
||||||
homepage = "https://irssi.org";
|
homepage = "https://irssi.org";
|
||||||
description = "A terminal based IRC client";
|
license = licenses.gpl2Plus;
|
||||||
platforms = lib.platforms.unix;
|
maintainers = with maintainers; [ fab lovek323 ];
|
||||||
maintainers = with lib.maintainers; [ lovek323 ];
|
platforms = platforms.unix;
|
||||||
license = lib.licenses.gpl2Plus;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue