gnu: ngless: Use gexp.
* gnu/packages/bioinformatics.scm (ngless)[arguments]: Use gexp.
This commit is contained in:
parent
648c370f33
commit
e20ca244db
1 changed files with 36 additions and 35 deletions
|
@ -14171,41 +14171,42 @@ datasets.")
|
||||||
(patches (search-patches "ngless-unliftio.patch"))))
|
(patches (search-patches "ngless-unliftio.patch"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:haddock? #f ; The haddock phase fails with: NGLess/CmdArgs.hs:20:1:
|
(list
|
||||||
; error: parse error on input import
|
#:haddock? #f ;The haddock phase fails with: NGLess/CmdArgs.hs:20:1:
|
||||||
; import Options.Applicative
|
;error: parse error on input import
|
||||||
|
;import Options.Applicative
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'create-Versions.hs
|
(add-after 'unpack 'create-Versions.hs
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "Makefile"
|
(substitute* "Makefile"
|
||||||
(("BWA_VERSION = .*")
|
(("BWA_VERSION = .*")
|
||||||
(string-append "BWA_VERSION = "
|
(string-append "BWA_VERSION = "
|
||||||
,(package-version bwa) "\n"))
|
#$(package-version bwa) "\n"))
|
||||||
(("SAM_VERSION = .*")
|
(("SAM_VERSION = .*")
|
||||||
(string-append "SAM_VERSION = "
|
(string-append "SAM_VERSION = "
|
||||||
,(package-version samtools) "\n"))
|
#$(package-version samtools) "\n"))
|
||||||
(("PRODIGAL_VERSION = .*")
|
(("PRODIGAL_VERSION = .*")
|
||||||
(string-append "PRODIGAL_VERSION = "
|
(string-append "PRODIGAL_VERSION = "
|
||||||
,(package-version prodigal) "\n"))
|
#$(package-version prodigal) "\n"))
|
||||||
(("MINIMAP2_VERSION = .*")
|
(("MINIMAP2_VERSION = .*")
|
||||||
(string-append "MINIMAP2_VERSION = "
|
(string-append "MINIMAP2_VERSION = "
|
||||||
,(package-version minimap2) "\n")))
|
#$(package-version minimap2) "\n")))
|
||||||
(invoke "make" "NGLess/Dependencies/Versions.hs")))
|
(invoke "make" "NGLess/Dependencies/Versions.hs")))
|
||||||
(add-after 'create-Versions.hs 'create-cabal-file
|
(add-after 'create-Versions.hs 'create-cabal-file
|
||||||
(lambda _ (invoke "hpack")))
|
(lambda _ (invoke "hpack")))
|
||||||
;; These tools are expected to be installed alongside ngless.
|
;; These tools are expected to be installed alongside ngless.
|
||||||
(add-after 'install 'link-tools
|
(add-after 'install 'link-tools
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
|
(let ((bin (string-append #$output "/bin/")))
|
||||||
(symlink (search-input-file inputs "/bin/prodigal")
|
(symlink (search-input-file inputs "/bin/prodigal")
|
||||||
(string-append bin "ngless-" ,version "-prodigal"))
|
(string-append bin "ngless-" #$version "-prodigal"))
|
||||||
(symlink (search-input-file inputs "/bin/minimap2")
|
(symlink (search-input-file inputs "/bin/minimap2")
|
||||||
(string-append bin "ngless-" ,version "-minimap2"))
|
(string-append bin "ngless-" #$version "-minimap2"))
|
||||||
(symlink (search-input-file inputs "/bin/samtools")
|
(symlink (search-input-file inputs "/bin/samtools")
|
||||||
(string-append bin "ngless-" ,version "-samtools"))
|
(string-append bin "ngless-" #$version "-samtools"))
|
||||||
(symlink (search-input-file inputs "/bin/bwa")
|
(symlink (search-input-file inputs "/bin/bwa")
|
||||||
(string-append bin "ngless-" ,version "-bwa"))))))))
|
(string-append bin "ngless-" #$version "-bwa"))))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list prodigal
|
(list prodigal
|
||||||
bwa
|
bwa
|
||||||
|
|
Reference in a new issue