gnu: jamm: Use G-expression.
* gnu/packages/bioinformatics.scm (jamm)[arguments]: Use G-expression.master
parent
662e2e82b1
commit
e4ca1bcea5
|
@ -15862,16 +15862,16 @@ Barcoding Kit or Rapid Barcoding Kit.")
|
|||
"0bsa5mf9n9q5jz7mmacrra41l7r8rac5vgsn6wv1fb52ya58b970"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; there are none
|
||||
(list
|
||||
#:tests? #f ;there are none
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
(delete 'build)
|
||||
(replace 'install
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(libexec (string-append out "/libexec/jamm"))
|
||||
(bin (string-append out "/bin")))
|
||||
(lambda _
|
||||
(let ((libexec (string-append #$output "/libexec/jamm"))
|
||||
(bin (string-append #$output "/bin")))
|
||||
(substitute* '("JAMM.sh"
|
||||
"SignalGenerator.sh")
|
||||
(("^sPath=.*")
|
||||
|
@ -15894,14 +15894,13 @@ Barcoding Kit or Rapid Barcoding Kit.")
|
|||
(install-file script bin)
|
||||
(wrap-program (string-append bin "/" script)
|
||||
`("PATH" ":" prefix
|
||||
(,(string-append (assoc-ref inputs "coreutils") "/bin")
|
||||
,(string-append (assoc-ref inputs "gawk") "/bin")
|
||||
,(string-append (assoc-ref inputs "perl") "/bin")
|
||||
,(string-append (assoc-ref inputs "r-minimal") "/bin")))
|
||||
(,(string-append #$(this-package-input "coreutils") "/bin")
|
||||
,(string-append #$(this-package-input "gawk") "/bin")
|
||||
,(string-append #$(this-package-input "perl") "/bin")
|
||||
,(string-append #$(this-package-input "r-minimal") "/bin")))
|
||||
`("PERL5LIB" ":" prefix (,(getenv "PERL5LIB")))
|
||||
`("R_LIBS_SITE" ":" prefix (,(getenv "R_LIBS_SITE")))))
|
||||
(list "JAMM.sh" "SignalGenerator.sh")))
|
||||
#t)))))
|
||||
(list "JAMM.sh" "SignalGenerator.sh"))))))))
|
||||
(inputs
|
||||
(list bash
|
||||
coreutils
|
||||
|
|
Reference in New Issue