summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2012-10-23 11:19:36 -0700
committerVladimír Čunát <vcunat@gmail.com>2012-10-23 11:19:36 -0700
commit73369e1e968e68ce03b7adabe979f296fe282319 (patch)
treea4e722497e9d4e5cdb327ba19ef83471ed629b17 /pkgs
parentf2b9fcdc665d15a518c582e8054a006d37ca886e (diff)
parent4be6b18fdf2f664427b7f442b5a21bf48ec8034e (diff)
downloadnixlib-73369e1e968e68ce03b7adabe979f296fe282319.tar
nixlib-73369e1e968e68ce03b7adabe979f296fe282319.tar.gz
nixlib-73369e1e968e68ce03b7adabe979f296fe282319.tar.bz2
nixlib-73369e1e968e68ce03b7adabe979f296fe282319.tar.lz
nixlib-73369e1e968e68ce03b7adabe979f296fe282319.tar.xz
nixlib-73369e1e968e68ce03b7adabe979f296fe282319.tar.zst
nixlib-73369e1e968e68ce03b7adabe979f296fe282319.zip
Merge pull request #170 from ecarreras/fix-xfce-gigolo
Fix waf env python to ${python}/bin/python
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/desktops/xfce-4.8/applications/gigolo.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce-4.8/applications/gigolo.nix b/pkgs/desktops/xfce-4.8/applications/gigolo.nix
index 1353546bcc1b..5215697bbca9 100644
--- a/pkgs/desktops/xfce-4.8/applications/gigolo.nix
+++ b/pkgs/desktops/xfce-4.8/applications/gigolo.nix
@@ -10,6 +10,10 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ python gettext intltool gtk pkgconfig gvfs];
 
+  preConfigure = ''
+    sed -i "waf" -e "1 s^.*/env[ ]*python^#!${python}/bin/python^";
+  '';
+
   meta = {
     homepage = http://goodies.xfce.org/projects/applications/gigolo;
     description = "Gigolo is a frontend to easily manage connections to remote filesystems";