about summary refs log tree commit diff
path: root/pkgs/applications/networking/irc/epic5
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-02-18 13:10:00 -0600
committerndowens <ndowens04@gmail.com>2017-02-18 13:17:03 -0600
commitbd97e19d011eeafb4a182018ab2e247d9e6e83a3 (patch)
tree4bd0a027da4c12dc99b30b28d539ff3cb65b8af0 /pkgs/applications/networking/irc/epic5
parent32560d26998fb593d512ac8dce0946486bb299f1 (diff)
downloadnixlib-bd97e19d011eeafb4a182018ab2e247d9e6e83a3.tar
nixlib-bd97e19d011eeafb4a182018ab2e247d9e6e83a3.tar.gz
nixlib-bd97e19d011eeafb4a182018ab2e247d9e6e83a3.tar.bz2
nixlib-bd97e19d011eeafb4a182018ab2e247d9e6e83a3.tar.lz
nixlib-bd97e19d011eeafb4a182018ab2e247d9e6e83a3.tar.xz
nixlib-bd97e19d011eeafb4a182018ab2e247d9e6e83a3.tar.zst
nixlib-bd97e19d011eeafb4a182018ab2e247d9e6e83a3.zip
epic5: changed rm, cp, chmod to use pkgs.coreutils
epic5: removed pkgs from pkgs.coreutils

	modified:   pkgs/applications/networking/irc/epic5/default.nix
Diffstat (limited to 'pkgs/applications/networking/irc/epic5')
-rw-r--r--pkgs/applications/networking/irc/epic5/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/networking/irc/epic5/default.nix b/pkgs/applications/networking/irc/epic5/default.nix
index 2daeab5d3026..35e436eb7154 100644
--- a/pkgs/applications/networking/irc/epic5/default.nix
+++ b/pkgs/applications/networking/irc/epic5/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, openssl, ncurses, libiconv, tcl }:
+{ stdenv, fetchurl, openssl, ncurses, libiconv, tcl, coreutils }:
 
 stdenv.mkDerivation rec {
   name = "epic5-${version}";
@@ -17,14 +17,14 @@ stdenv.mkDerivation rec {
 
   postConfigure = ''
     substituteInPlace bsdinstall \
-      --replace /bin/cp cp \
-      --replace /bin/rm rm \
-      --replace /bin/chmod chmod
+      --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";
+    homepage = "http://epicsol.org";
+    description = "A IRC client that offers a great ircII interface";
     license = licenses.bsd3;
     maintainers = [ maintainers.ndowens ];
   };