mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: stagit: Fix cross-compiling.
* gnu/packages/version-control.scm (stagit)[arguments]: Use G-expressions. Change-Id: I7de0449d0709d554095df7532c92cb589d328b4c
This commit is contained in:
parent
ce233d1f2b
commit
b40c808f96
1 changed files with 6 additions and 6 deletions
|
@ -3266,12 +3266,12 @@ (define-public stagit
|
|||
"17yggk3fbm731z98warvix332487s0k6knhxnf9zc6f667qi2mlr"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; No tests
|
||||
#:make-flags (list (string-append "CC=" ,(cc-for-target))
|
||||
(string-append "PREFIX=" %output))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure)))) ; No configure script
|
||||
(list #:tests? #f ; No tests
|
||||
#:make-flags #~(list (string-append "CC=" #$(cc-for-target))
|
||||
(string-append "PREFIX=" #$output))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)))) ; No configure script
|
||||
(inputs
|
||||
(list libgit2))
|
||||
(home-page "https://git.codemadness.org/stagit/")
|
||||
|
|
Loading…
Reference in a new issue