mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
52 lines
900 B
Nix
52 lines
900 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
ruby,
|
|
fetchurl,
|
|
openssl,
|
|
ncurses,
|
|
libiconv,
|
|
tcl,
|
|
libxcrypt,
|
|
perl,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "epic5";
|
|
version = "3.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/epic5-${finalAttrs.version}.tar.xz";
|
|
hash = "sha256-F7lnxh5Yh08HdeH9CwYH+FxktjJYwaxNQInoETUqOUU=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
})
|