diff options
author | Leo Famulari <leo@famulari.name> | 2017-03-15 17:18:47 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-03-15 17:20:27 -0400 |
commit | dce8ac54b4d3648b7b63ae3a07292f43ceddf5a8 (patch) | |
tree | 3aed59d45832b457ba94b65d7023b3deb271089d /gnu/packages/messaging.scm | |
parent | cf8d0687756fc5a3ce9ba3059292648cc658f1b7 (diff) | |
download | patches-dce8ac54b4d3648b7b63ae3a07292f43ceddf5a8.tar patches-dce8ac54b4d3648b7b63ae3a07292f43ceddf5a8.tar.gz |
gnu: profanity: Make the source URL version-agnostic.
* gnu/packages/messaging.scm (profanity)[source]: Use (version) in the source
URL.
Diffstat (limited to 'gnu/packages/messaging.scm')
-rw-r--r-- | gnu/packages/messaging.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 559138ff39..7aa7b7bfe5 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1300,7 +1300,8 @@ are both supported).") (version "0.5.1") (source (origin (method url-fetch) - (uri "http://www.profanity.im/profanity-0.5.1.tar.gz") + (uri (string-append "http://www.profanity.im/profanity-" + version ".tar.gz")) (sha256 (base32 "1f7ylw3mhhnii52mmk40hyc4kqhpvjdr3hmsplzkdhsfww9kflg3")))) |