epic5: changed rm, cp, chmod to use pkgs.coreutils

epic5: removed pkgs from pkgs.coreutils

	modified:   pkgs/applications/networking/irc/epic5/default.nix
This commit is contained in:
ndowens 2017-02-18 13:10:00 -06:00
parent 32560d2699
commit bd97e19d01

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, openssl, ncurses, libiconv, tcl }: { stdenv, fetchurl, openssl, ncurses, libiconv, tcl, coreutils }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "epic5-${version}"; name = "epic5-${version}";
@ -17,14 +17,14 @@ stdenv.mkDerivation rec {
postConfigure = '' postConfigure = ''
substituteInPlace bsdinstall \ substituteInPlace bsdinstall \
--replace /bin/cp cp \ --replace /bin/cp ${coreutils}/bin/cp \
--replace /bin/rm rm \ --replace /bin/rm ${coreutils}/bin/rm \
--replace /bin/chmod chmod --replace /bin/chmod ${coreutils}/bin/chmod \
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "http://epicsol.org/"; homepage = "http://epicsol.org";
description = "a IRC client that offers a great ircII interface"; description = "A IRC client that offers a great ircII interface";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.ndowens ]; maintainers = [ maintainers.ndowens ];
}; };