[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/04: gnu: loksh: Don't use unstable tarball.
From: |
Tobias Geerinckx-Rice |
Subject: |
02/04: gnu: loksh: Don't use unstable tarball. |
Date: |
Wed, 24 Oct 2018 00:01:48 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit e5d757709a05169e4f1d87baf17358aab0dd8bb1
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Wed Oct 24 05:43:00 2018 +0200
gnu: loksh: Don't use unstable tarball.
* gnu/packages/shells.scm (loksh)[source]: Use GIT-FETCH and GIT-FILE-NAME.
---
gnu/packages/shells.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm
index 8362d00..7a7f2ae 100644
--- a/gnu/packages/shells.scm
+++ b/gnu/packages/shells.scm
@@ -572,13 +572,13 @@ The OpenBSD Korn Shell is a cleaned up and enhanced ksh.")
(version "6.3")
(source
(origin
- (method url-fetch)
- (uri (string-append "https://github.com/dimkr/loksh/archive/"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dimkr/loksh.git")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "0i1b60g1p19s5cnzz0nmjzjnxywm9szzyp1rcwfcx3gmzvrwr2sc"))))
+ (base32 "0hx57y73g807x321wpa6sr0vvw6igwhaq88rrdryjjbw6p4k0vcc"))))
(build-system gnu-build-system)
(inputs
`(("libbsd" ,libbsd)))