24fdeddc0a
GitOrigin-RevId: 2768c7d042a37de65bb1b5b3268fc987e534c49d
51 lines
898 B
Nix
51 lines
898 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
ruby,
|
|
fetchurl,
|
|
openssl,
|
|
ncurses,
|
|
libiconv,
|
|
tcl,
|
|
libxcrypt,
|
|
perl,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "epic5";
|
|
version = "3.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/epic5-${finalAttrs.version}.tar.xz";
|
|
hash = "sha256-ltRzUME6PZkBnaDmoEsMf4Datt26WQvMZ527iswXeaE=";
|
|
};
|
|
|
|
buildInputs =
|
|
[
|
|
openssl
|
|
ncurses
|
|
libxcrypt
|
|
ruby
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
libiconv
|
|
tcl
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-ipv6"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
perl
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://epicsol.org";
|
|
description = "IRC client that offers a great ircII interface";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ bot-wxt1221 ];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "epic5";
|
|
};
|
|
})
|