mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: s-shell: Update to commit da2e5c20c0c5f477ec3426dc2584889a789b1659.
* gnu/packages/shells.scm (s-shell): Update to commit da2e5c20c0c5f477ec3426dc2584889a789b1659. [version]: Use 'git-version'. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
a0ec2d256d
commit
e536b1d308
1 changed files with 7 additions and 5 deletions
|
@ -511,11 +511,11 @@ (define-public linenoise
|
||||||
(license bsd-2))))
|
(license bsd-2))))
|
||||||
|
|
||||||
(define-public s-shell
|
(define-public s-shell
|
||||||
(let ((commit "6604341edb3a775ff94415762af3ee9bd86bfb3c")
|
(let ((commit "da2e5c20c0c5f477ec3426dc2584889a789b1659")
|
||||||
(revision "1"))
|
(revision "2"))
|
||||||
(package
|
(package
|
||||||
(name "s-shell")
|
(name "s-shell")
|
||||||
(version (string-append "0.0.0-" revision "." (string-take commit 7)))
|
(version (git-version "0.0.0" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -525,13 +525,15 @@ (define-public s-shell
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1075cml6dl15d770j3m12yz90cjacsdslbv3gank1nxd76vmpdcr"))))
|
"0qiny71ww5nhzy4mnc8652hn0mlxyb67h333gbdxp4j4qxsi13q4"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("linenoise" ,linenoise)))
|
`(("linenoise" ,linenoise)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
`(#:tests? #f
|
||||||
#:make-flags (list "CC=gcc")
|
#:make-flags (list "CC=gcc"
|
||||||
|
(string-append "PREFIX="
|
||||||
|
(assoc-ref %outputs "out")))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'install-directory-fix
|
(add-after 'unpack 'install-directory-fix
|
||||||
|
|
Loading…
Reference in a new issue