gnu: dropbear: Don't use unstable tarball.

* gnu/packages/screen.scm (dropbear)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-03-28 20:14:36 +01:00
parent cf9ab49e97
commit 40d59c4e22
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 7 additions and 4 deletions

View File

@ -27,6 +27,7 @@
#:use-module (guix licenses) #:use-module (guix licenses)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (gnu packages) #:use-module (gnu packages)
#:use-module (gnu packages ncurses) #:use-module (gnu packages ncurses)
@ -156,11 +157,13 @@ window manager as well as the Tmux terminal multiplexer.")
(version "0.7.0") (version "0.7.0")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/nelhage/reptyr/archive" (uri (git-reference
"/reptyr-" version ".tar.gz")) (url "https://github.com/nelhage/reptyr.git")
(commit (string-append "reptyr-" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 "10s9blv8xljzfdn4xly5y2q66kd0ldj3wnflymsxb5g6r3s3kidi")))) (base32 "1hnijfz1ab34j2h2cxc3f43rmbclyihgn9x9wxa7jqqgb2xm71hj"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:tests? #f ; no tests '(#:tests? #f ; no tests