diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2015-08-16 21:54:58 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-08-16 21:55:44 +0200 |
commit | 4e0143738fb0497b9d3c2a9a2426798e8f00f7ec (patch) | |
tree | abd50a2c8c0e5d321abeab26a26f23309e9b80a3 /gnu/packages/audio.scm | |
parent | eb537f5748a1218fa9432d2da6101d7971f529f1 (diff) | |
download | guix-4e0143738fb0497b9d3c2a9a2426798e8f00f7ec.tar guix-4e0143738fb0497b9d3c2a9a2426798e8f00f7ec.tar.gz |
gnu: ardour: Update to 4.2.
* gnu/packages/audio.scm (ardour): Update to 4.2.
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 685a04d9cd..1537f3335d 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -232,13 +232,12 @@ engineers, musicians, soundtrack editors and composers.") (define-public ardour (package (inherit ardour-3) (name "ardour") - ;; We pick the commit after 4.1 because it fixes a build problem. - (version "4.1-5aa834e") + (version "4.2") (source (origin (method git-fetch) (uri (git-reference (url "git://git.ardour.org/ardour/ardour.git") - (commit (cadr (string-split version #\-))))) + (commit version))) (snippet ;; Ardour expects this file to exist at build time. It can be ;; created from a git checkout with: @@ -247,10 +246,10 @@ engineers, musicians, soundtrack editors and composers.") "libs/ardour/revision.cc" (lambda (port) (format port "#include \"ardour/revision.h\" -namespace ARDOUR { const char* revision = \"4.1\" ; }")))) +namespace ARDOUR { const char* revision = \"4.2\" ; }")))) (sha256 (base32 - "0pfmxlscnwyqmgc89cdwrsk1769lr89dirfnpjbxj9zgcns6zqgb")) + "1j8zw0bvh16qwyy8qrqynpak9nghl9j3qhjjcdl7wh9raafjqc00")) (file-name (string-append name "-" version)))) (arguments (substitute-keyword-arguments (package-arguments ardour-3) |