gnu: emacs-transmission: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-transmission)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-08 23:31:48 +02:00
parent acbd9f5e14
commit 49194b85ce
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 9 deletions

View File

@ -8168,15 +8168,15 @@ in a generalized CSV (character-separated values) format.")
(package (package
(name "emacs-transmission") (name "emacs-transmission")
(version "0.12.1") (version "0.12.1")
(source (origin (source
(method url-fetch) (origin
(uri (string-append (method git-fetch)
"https://github.com/holomorph/transmission/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/holomorph/transmission.git")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(sha256 (file-name (git-file-name name version))
(base32 (sha256
"1rrlgn96gi1ljfwbwvlyyxbq75xzamlbdhq1bpyadxxmxcvlmk3n")))) (base32 "0kvg2gawsgy440x1fsl2c4pkxwp3zirq9rzixanklk0ryijhd3ry"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://github.com/holomorph/transmission") (home-page "https://github.com/holomorph/transmission")
(synopsis "Emacs interface to a Transmission session") (synopsis "Emacs interface to a Transmission session")