mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: gess: Don't hardcode python version.
* gnu/packages/bioinformatics.scm (gess)[arguments]: Replace hardcoded python version with parameterized one.
This commit is contained in:
parent
cc729d257c
commit
2f3977b9a7
1 changed files with 4 additions and 1 deletions
|
@ -11390,7 +11390,10 @@ (define-public gess
|
|||
(out (assoc-ref outputs "out"))
|
||||
(bin (string-append out "/bin/"))
|
||||
(target (string-append
|
||||
out "/lib/python2.7/site-packages/gess/")))
|
||||
out "/lib/python"
|
||||
,(version-major+minor
|
||||
(package-version python))
|
||||
"/site-packages/gess/")))
|
||||
(mkdir-p target)
|
||||
(copy-recursively "." target)
|
||||
;; Make GESS.py executable
|
||||
|
|
Loading…
Reference in a new issue