diff options
author | Mark H Weaver <mhw@netris.org> | 2016-08-17 06:04:01 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2016-08-17 06:05:30 -0400 |
commit | d80a71eb9b923025c4179e7edc8d26ffd70cbe44 (patch) | |
tree | ad24ac04c7330e4c520feca6f191cbae08251515 | |
parent | 6eb7af2a43d94d6404a9b70c8beff1a535b50607 (diff) | |
download | patches-d80a71eb9b923025c4179e7edc8d26ffd70cbe44.tar patches-d80a71eb9b923025c4179e7edc8d26ffd70cbe44.tar.gz |
gnu: python-kivy-next: Fix version string.
This is a followup to commit 6eb7af2a43d94d6404a9b70c8beff1a535b50607.
* gnu/packages/python.scm (python-kivy-next)[version]: Add missing "-".
-rw-r--r-- | gnu/packages/python.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 206bf68a5e..d7886d9399 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -9968,7 +9968,7 @@ hardware-accelerated multitouch applications.") (revision "1")) (package (inherit python-kivy) (name "python-kivy-next") - (version (string-append "1.9.1" revision "." + (version (string-append "1.9.1-" revision "." (string-take commit 7))) (source (origin |