about summary refs log tree commit diff
path: root/pkgs/tools/admin/tigervnc
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-07-12 22:32:22 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-07-12 22:32:22 +0000
commit6a1cee4a69c7e0f359c3cd3ea42c0daa5225f21c (patch)
treec344fcda4ad8001c834e01a9b4b94cdae734c0e1 /pkgs/tools/admin/tigervnc
parent6c0b62d1a5b3c6c718cfdec0e2c39439f299a2e4 (diff)
downloadnixlib-6a1cee4a69c7e0f359c3cd3ea42c0daa5225f21c.tar
nixlib-6a1cee4a69c7e0f359c3cd3ea42c0daa5225f21c.tar.gz
nixlib-6a1cee4a69c7e0f359c3cd3ea42c0daa5225f21c.tar.bz2
nixlib-6a1cee4a69c7e0f359c3cd3ea42c0daa5225f21c.tar.lz
nixlib-6a1cee4a69c7e0f359c3cd3ea42c0daa5225f21c.tar.xz
nixlib-6a1cee4a69c7e0f359c3cd3ea42c0daa5225f21c.tar.zst
nixlib-6a1cee4a69c7e0f359c3cd3ea42c0daa5225f21c.zip
Trouble in my last tigervnc commit. Fixing it.
svn path=/nixpkgs/trunk/; revision=22570
Diffstat (limited to 'pkgs/tools/admin/tigervnc')
-rw-r--r--pkgs/tools/admin/tigervnc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/admin/tigervnc/default.nix b/pkgs/tools/admin/tigervnc/default.nix
index 40e7da709c72..23f93a1f6b00 100644
--- a/pkgs/tools/admin/tigervnc/default.nix
+++ b/pkgs/tools/admin/tigervnc/default.nix
@@ -21,6 +21,8 @@ stdenv.mkDerivation {
     sed -i -e 's,$(includedir)/pixman-1,${pixman}/include/pixman-1,' unix/xserver/hw/vnc/Makefile.am
   '';
 
+  # I don't know why I can't use in the script
+  # this:  ${concatStringsSep " " (map (f: "${f}") xorgserver.patches)}
   xorgPatches = xorgserver.patches;
 
   postBuild = ''
@@ -28,8 +30,6 @@ stdenv.mkDerivation {
     tar xf ${xorgserver.src}
     cp -R xorg*/* unix/xserver
     pushd unix/xserver
-    # This below does not work and I don't know why:
-    #for a in ${concatStringsSep " " (map (f: "${f}") xorgserver.patches)}
     for a in $xorgPatches
     do
       patch -p1 < $a