Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 486b9be579fc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b165de3be5b1
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Feb 13, 2017

  1. epic5: init at 2.0.1

    Added conditional to support darwin
    
    Changed comment about buildInputs
    
    Added 's' to optional condition
    ndowens committed Feb 13, 2017
    Copy the full SHA
    dda70d9 View commit details
  2. epic5: add configure flags

    LnL7 committed Feb 13, 2017

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    LnL7 Daiderd Jordan
    Copy the full SHA
    66eba1f View commit details
  3. Merge pull request #22730 from ndowens/master

    epic5: init at 2.0.1
    LnL7 authored Feb 13, 2017
    Copy the full SHA
    b165de3 View commit details
Showing with 36 additions and 0 deletions.
  1. +34 −0 pkgs/applications/networking/irc/epic5/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
34 changes: 34 additions & 0 deletions pkgs/applications/networking/irc/epic5/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{ stdenv, fetchurl, openssl, ncurses, libiconv, tcl }:

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 cp \
--replace /bin/rm rm \
--replace /bin/chmod 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 ];
};
}



2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -13155,6 +13155,8 @@ with pkgs;

inherit (gnome3) epiphany;

epic5 = callPackage ../applications/networking/irc/epic5 { };

eq10q = callPackage ../applications/audio/eq10q { };

errbot = callPackage ../applications/networking/errbot {