gnu: ibus: Do not hardcode Python version.
* gnu/packages/ibus.scm (ibus)[arguments]: Remove hardcoded Python version.
This commit is contained in:
		
							parent
							
								
									3bbd6919bd
								
							
						
					
					
						commit
						dbac4833b4
					
				
					 1 changed files with 5 additions and 2 deletions
				
			
		|  | @ -1,5 +1,5 @@ | ||||||
| ;;; GNU Guix --- Functional package management for GNU | ;;; GNU Guix --- Functional package management for GNU | ||||||
| ;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net> | ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net> | ||||||
| ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr> | ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr> | ||||||
| ;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com> | ;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com> | ||||||
| ;;; Copyright © 2017, 2018 Efraim Flashner <efraim@flashner.co.il> | ;;; Copyright © 2017, 2018 Efraim Flashner <efraim@flashner.co.il> | ||||||
|  | @ -29,6 +29,7 @@ | ||||||
|   #:use-module (guix build-system cmake) |   #:use-module (guix build-system cmake) | ||||||
|   #:use-module (guix build-system gnu) |   #:use-module (guix build-system gnu) | ||||||
|   #:use-module (guix build-system glib-or-gtk) |   #:use-module (guix build-system glib-or-gtk) | ||||||
|  |   #:use-module (guix utils) | ||||||
|   #:use-module (gnu packages) |   #:use-module (gnu packages) | ||||||
|   #:use-module (gnu packages anthy) |   #:use-module (gnu packages anthy) | ||||||
|   #:use-module (gnu packages autotools) |   #:use-module (gnu packages autotools) | ||||||
|  | @ -78,7 +79,9 @@ | ||||||
|        (list "CC=gcc" |        (list "CC=gcc" | ||||||
|              (string-append "pyoverridesdir=" |              (string-append "pyoverridesdir=" | ||||||
|                             (assoc-ref %outputs "out") |                             (assoc-ref %outputs "out") | ||||||
|                             "/lib/python3.6/site-packages/gi/overrides/")) |                             "/lib/python" | ||||||
|  |                             ,(version-major+minor (package-version python)) | ||||||
|  |                             "/site-packages/gi/overrides/")) | ||||||
|        #:phases |        #:phases | ||||||
|        (modify-phases %standard-phases |        (modify-phases %standard-phases | ||||||
|          (add-after 'unpack 'prepare-ucd-dir |          (add-after 'unpack 'prepare-ucd-dir | ||||||
|  |  | ||||||
		Reference in a new issue