mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
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)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
|
@ -29,7 +30,7 @@ (define-module (gnu packages loko)
|
|||
(define-public loko-scheme
|
||||
(package
|
||||
(name "loko-scheme")
|
||||
(version "0.7.0")
|
||||
(version "0.12.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -37,7 +38,7 @@ (define-public loko-scheme
|
|||
(url "https://gitlab.com/weinholt/loko")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32 "1441aarw3vy14zdxyab495ag2fch04v4j89krhbqnqfkz6mdi0vy"))
|
||||
(base32 "12xp82z91qkp9q8lfp46s4sda8qgs472jic3js1kbykn4jzy7399"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
|
@ -46,9 +47,7 @@ (define-public loko-scheme
|
|||
#:tests? #f
|
||||
#:strip-binaries? #f
|
||||
#:make-flags
|
||||
#~(list
|
||||
(string-append "PREFIX=" #$output)
|
||||
(string-append "GDB_AUTOLOAD_PATH=" #$output "/share/gdb/auto-load"))
|
||||
#~(list (string-append "PREFIX=" #$output))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
|
|
Loading…
Reference in a new issue