mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #22951 from ndowens/epic5
epic5: changed rm, cp, chmod to use pkgs.coreutils
This commit is contained in:
commit
6561fafb4a
@ -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 ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user