From 140eb221b2fdde3c2cb2a137b11798f17d9a564f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Fri, 22 May 2020 15:59:58 -0300 Subject: [PATCH] enlightenment.enlightenment: no need to fix edje_cc path Upstream looks for the edje_cc binary (which is provided by efl) in the bin subdirectory of the enlightenment package prefix. If not found it is called without giving a directory (that is, it defaults to $PATH). Therefore a fix is not needed anymore. --- pkgs/desktops/enlightenment/enlightenment.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkgs/desktops/enlightenment/enlightenment.nix b/pkgs/desktops/enlightenment/enlightenment.nix index e8033e5fc79..a8a8c08b3e0 100644 --- a/pkgs/desktops/enlightenment/enlightenment.nix +++ b/pkgs/desktops/enlightenment/enlightenment.nix @@ -65,12 +65,6 @@ stdenv.mkDerivation rec { ]; postPatch = '' - # edge_cc is a binary provided by efl and cannot be found at the directory - # given by e_prefix_bin_get(), which is $out/bin - - substituteInPlace src/bin/e_import_config_dialog.c \ - --replace "e_prefix_bin_get()" "\"${efl}/bin\"" - substituteInPlace src/modules/everything/evry_plug_calc.c \ --replace "ecore_exe_pipe_run(\"bc -l\"" "ecore_exe_pipe_run(\"${bc}/bin/bc -l\"" '';