summary refs log tree commit diff
path: root/pkgs/applications/networking/irc/epic5/default.nix
blob: 35e436eb7154eaeac47202aa74abeeac08cae2e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv, fetchurl, openssl, ncurses, libiconv, tcl, coreutils }:

stdenv.mkDerivation rec {
  name = "epic5-${version}";
  version = "2.0.1";

  src = fetchurl {
    url = "http://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/${name}.tar.xz";
    sha256 = "1ap73d5f4vccxjaaq249zh981z85106vvqmxfm4plvy76b40y9jm";
  };

  # Darwin needs libiconv, tcl; while Linux build don't
  buildInputs = [ openssl ncurses ]
    ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv tcl ];

  configureFlags = [ "--disable-debug" "--with-ipv6" ];

  postConfigure = ''
    substituteInPlace bsdinstall \
      --replace /bin/cp ${coreutils}/bin/cp \
      --replace /bin/rm ${coreutils}/bin/rm \
      --replace /bin/chmod ${coreutils}/bin/chmod \
  '';

  meta = with stdenv.lib; {
    homepage = "http://epicsol.org";
    description = "A IRC client that offers a great ircII interface";
    license = licenses.bsd3;
    maintainers = [ maintainers.ndowens ];
  };
}