From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Xfce collision Date: Thu, 25 Feb 2016 21:36:58 +0100 Message-ID: <20160225203658.GA24846@solar> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52901) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZ2ep-0000id-9w for guix-devel@gnu.org; Thu, 25 Feb 2016 15:37:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aZ2el-0001YM-HO for guix-devel@gnu.org; Thu, 25 Feb 2016 15:37:07 -0500 Received: from mailrelay7.public.one.com ([91.198.169.215]:21963) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZ2el-0001Y6-5c for guix-devel@gnu.org; Thu, 25 Feb 2016 15:37:03 -0500 Content-Disposition: inline List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org Hello, when installing xfce, there is a collision with xfce4-session for the file startxfce4. The reason is the following: (alist-replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin")) (prog (string-append bin "/startxfce4"))) (mkdir-p bin) (symlink (string-append (assoc-ref %build-inputs "xfce4-session") "/bin/startxfce4") prog) (wrap-program prog ;; For xfce4-panel plugins. `("X_XFCE4_LIB_DIRS" = ,(list (getenv "X_XFCE4_LIB_DIRS")))))) (propagated-inputs ... ("xfce4-session" ,xfce4-session) So if I understand correctly, the startxfce4 of xfce will end up being a wrapped version of the one in xfce4-session. However, if both are installed, could it not be possible that the non-wrapped version ends up in the profile? Andreas