nixpkgs/pkgs/applications/networking/irc/irssi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
857 B
Nix
Raw Normal View History

2022-07-04 18:56:26 +00:00
{ lib
, stdenv
, fetchFromGitHub
, glib
, libgcrypt
, libintl
, libotr
, libtool
, meson
, ncurses
, ninja
, openssl
, perl
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "irssi";
version = "1.4.4";
src = fetchFromGitHub {
2022-07-04 18:56:26 +00:00
owner = "irssi";
repo = "irssi";
rev = version;
hash = "sha256-a/+9M2zoywZBdOfXHrA4O6Q9W7HJZNTthB/aseUNefA=";
};
2022-07-04 18:56:26 +00:00
nativeBuildInputs = [
meson
ninja
pkg-config
];
2022-02-06 20:17:05 +00:00
2022-07-04 18:56:26 +00:00
buildInputs = [
glib
libgcrypt
libintl
libotr
ncurses
openssl
perl
];
2017-01-09 05:29:40 +00:00
configureFlags = [
2022-07-04 18:56:26 +00:00
"-Dwith-proxy=yes"
"-Dwith-bot=yes"
"-Dwith-perl=yes"
2017-01-09 05:29:40 +00:00
];
2022-07-04 18:56:26 +00:00
meta = with lib; {
description = "Terminal based IRC client";
homepage = "https://irssi.org";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ fab lovek323 ];
platforms = platforms.unix;
};
}