diff options
author | Kei Kebreau <kei@openmailbox.org> | 2017-01-10 19:18:42 -0500 |
---|---|---|
committer | Kei Kebreau <kei@openmailbox.org> | 2017-01-10 20:30:28 -0500 |
commit | 2fbc004f434b40ac9160c2d04772a07ae30c5f87 (patch) | |
tree | 94338015d0608c661f46c7a2a2a4e523ca839f39 | |
parent | b0a567640cf66f396de3fb4a827f9cf8a7ee0abb (diff) | |
download | guix-2fbc004f434b40ac9160c2d04772a07ae30c5f87.tar guix-2fbc004f434b40ac9160c2d04772a07ae30c5f87.tar.gz |
gnu: moc: Update to 2.5.2.
* gnu/packages/music.scm (moc): Update to 2.5.2.
[source](modules, snippet): Remove timestamps from the output.
-rw-r--r-- | gnu/packages/music.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 59fd508f62..803e0a6e5d 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -2179,7 +2179,7 @@ with a number of bugfixes and changes to improve IT playback.") (define-public moc (package (name "moc") - (version "2.5.1") + (version "2.5.2") (source (origin (method url-fetch) (uri (string-append "http://ftp.daper.net/pub/soft/" @@ -2187,7 +2187,13 @@ with a number of bugfixes and changes to improve IT playback.") name "-" version ".tar.bz2")) (sha256 (base32 - "1wn4za08z64bhsgfhr9c0crfyvy8c3b6a337wx7gz19am5srqh8v")))) + "026v977kwb0wbmlmf6mnik328plxg8wykfx9ryvqhirac0aq39pk")) + (modules '((guix build utils))) + (snippet + ;; Remove use of __DATE__ and __TIME__ for reproducibility. + '(substitute* "main.c" + (("printf \\(\" Built : %s\", __DATE__\\);") "") + (("printf \\(\" %s\", __TIME__\\);") ""))))) (build-system gnu-build-system) (inputs `(("alsa-lib" ,alsa-lib) |