gnu: fastp: Simplify.
* gnu/packages/bioinformatics.scm (fastp)[arguments]: Simplify gexp.
This commit is contained in:
		
							parent
							
								
									7260cc75da
								
							
						
					
					
						commit
						54b431b7b3
					
				
					 1 changed files with 10 additions and 9 deletions
				
			
		| 
						 | 
				
			
			@ -5337,15 +5337,16 @@ The main functions of FastQC are:
 | 
			
		|||
         "0ly8mxdvrcy23jwxyppysx3dhb1lwsqhfbgpyvargxhfk6k700x4"))))
 | 
			
		||||
    (build-system gnu-build-system)
 | 
			
		||||
    (arguments
 | 
			
		||||
     `(#:tests? #f ; there are none
 | 
			
		||||
       #:make-flags
 | 
			
		||||
       ,#~(list (string-append "PREFIX=" #$output))
 | 
			
		||||
       #:phases
 | 
			
		||||
       (modify-phases %standard-phases
 | 
			
		||||
         (delete 'configure)
 | 
			
		||||
         (add-before 'install 'create-target-dir
 | 
			
		||||
           (lambda* (#:key outputs #:allow-other-keys)
 | 
			
		||||
             (mkdir-p (string-append (assoc-ref outputs "out") "/bin")))))))
 | 
			
		||||
     (list
 | 
			
		||||
      #:tests? #false                   ;there are none
 | 
			
		||||
      #:make-flags
 | 
			
		||||
      #~(list (string-append "PREFIX=" #$output))
 | 
			
		||||
      #:phases
 | 
			
		||||
      #~(modify-phases %standard-phases
 | 
			
		||||
          (delete 'configure)
 | 
			
		||||
          (add-before 'install 'create-target-dir
 | 
			
		||||
            (lambda _
 | 
			
		||||
              (mkdir-p (string-append #$output "/bin")))))))
 | 
			
		||||
    (inputs
 | 
			
		||||
     (list zlib))
 | 
			
		||||
    (home-page "https://github.com/OpenGene/fastp/")
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue