gnu: loko-scheme: Update to 0.12.0.
* gnu/packages/loko.scm (loko-scheme): Update to 0.12.0. [arguments]<#:make-flags>: No need to specify GDB scripts directory. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
		
							parent
							
								
									1f5241d8d5
								
							
						
					
					
						commit
						79a3cd34c0
					
				
					 1 changed files with 4 additions and 5 deletions
				
			
		| 
						 | 
					@ -18,6 +18,7 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-module (gnu packages loko)
 | 
					(define-module (gnu packages loko)
 | 
				
			||||||
  #:use-module (guix packages)
 | 
					  #:use-module (guix packages)
 | 
				
			||||||
 | 
					  #:use-module (guix gexp)
 | 
				
			||||||
  #:use-module (guix git-download)
 | 
					  #:use-module (guix git-download)
 | 
				
			||||||
  #:use-module (guix build-system gnu)
 | 
					  #:use-module (guix build-system gnu)
 | 
				
			||||||
  #:use-module ((guix licenses) #:prefix license:)
 | 
					  #:use-module ((guix licenses) #:prefix license:)
 | 
				
			||||||
| 
						 | 
					@ -29,7 +30,7 @@
 | 
				
			||||||
(define-public loko-scheme
 | 
					(define-public loko-scheme
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
    (name "loko-scheme")
 | 
					    (name "loko-scheme")
 | 
				
			||||||
    (version "0.7.0")
 | 
					    (version "0.12.0")
 | 
				
			||||||
    (source
 | 
					    (source
 | 
				
			||||||
     (origin
 | 
					     (origin
 | 
				
			||||||
       (method git-fetch)
 | 
					       (method git-fetch)
 | 
				
			||||||
| 
						 | 
					@ -37,7 +38,7 @@
 | 
				
			||||||
             (url "https://gitlab.com/weinholt/loko")
 | 
					             (url "https://gitlab.com/weinholt/loko")
 | 
				
			||||||
             (commit (string-append "v" version))))
 | 
					             (commit (string-append "v" version))))
 | 
				
			||||||
       (sha256
 | 
					       (sha256
 | 
				
			||||||
        (base32 "1441aarw3vy14zdxyab495ag2fch04v4j89krhbqnqfkz6mdi0vy"))
 | 
					        (base32 "12xp82z91qkp9q8lfp46s4sda8qgs472jic3js1kbykn4jzy7399"))
 | 
				
			||||||
       (file-name (git-file-name name version))))
 | 
					       (file-name (git-file-name name version))))
 | 
				
			||||||
    (build-system gnu-build-system)
 | 
					    (build-system gnu-build-system)
 | 
				
			||||||
    (arguments
 | 
					    (arguments
 | 
				
			||||||
| 
						 | 
					@ -46,9 +47,7 @@
 | 
				
			||||||
      #:tests? #f
 | 
					      #:tests? #f
 | 
				
			||||||
      #:strip-binaries? #f
 | 
					      #:strip-binaries? #f
 | 
				
			||||||
      #:make-flags
 | 
					      #:make-flags
 | 
				
			||||||
      #~(list
 | 
					      #~(list (string-append "PREFIX=" #$output))
 | 
				
			||||||
         (string-append "PREFIX=" #$output)
 | 
					 | 
				
			||||||
         (string-append "GDB_AUTOLOAD_PATH=" #$output "/share/gdb/auto-load"))
 | 
					 | 
				
			||||||
      #:phases
 | 
					      #:phases
 | 
				
			||||||
      #~(modify-phases %standard-phases
 | 
					      #~(modify-phases %standard-phases
 | 
				
			||||||
          (delete 'configure)
 | 
					          (delete 'configure)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue