summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2015-06-28 14:01:52 +0200
committerRicardo Wurmus <rekado@elephly.net>2015-06-28 14:34:08 +0200
commitfb029d463d9f7410be92668844797760ec38ef19 (patch)
tree2b5d42835438ee01ab047e683497aa05b1133830 /gnu
parent58593975b076593420983ec599c2ffadb9243424 (diff)
gnu: ardour: Update to 4.1.
* gnu/packages/audio.scm (ardour): Update to 4.1.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/audio.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 583e593309f..c3341e56882 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -227,12 +227,13 @@ engineers, musicians, soundtrack editors and composers.")
227(define-public ardour 227(define-public ardour
228 (package (inherit ardour-3) 228 (package (inherit ardour-3)
229 (name "ardour") 229 (name "ardour")
230 (version "4.0") 230 ;; We pick the commit after 4.1 because it fixes a build problem.
231 (version "4.1-5aa834e")
231 (source (origin 232 (source (origin
232 (method git-fetch) 233 (method git-fetch)
233 (uri (git-reference 234 (uri (git-reference
234 (url "git://git.ardour.org/ardour/ardour.git") 235 (url "git://git.ardour.org/ardour/ardour.git")
235 (commit version))) 236 (commit (cadr (string-split version #\-)))))
236 (snippet 237 (snippet
237 ;; Ardour expects this file to exist at build time. It can be 238 ;; Ardour expects this file to exist at build time. It can be
238 ;; created from a git checkout with: 239 ;; created from a git checkout with:
@@ -241,10 +242,10 @@ engineers, musicians, soundtrack editors and composers.")
241 "libs/ardour/revision.cc" 242 "libs/ardour/revision.cc"
242 (lambda (port) 243 (lambda (port)
243 (format port "#include \"ardour/revision.h\" 244 (format port "#include \"ardour/revision.h\"
244namespace ARDOUR { const char* revision = \"4.0\" ; }")))) 245namespace ARDOUR { const char* revision = \"4.1\" ; }"))))
245 (sha256 246 (sha256
246 (base32 247 (base32
247 "0a8bydc24xv0cahdqfaxdmi1f43cyr9psiyshxpbrkdqw2c7a4xi")) 248 "0pfmxlscnwyqmgc89cdwrsk1769lr89dirfnpjbxj9zgcns6zqgb"))
248 (file-name (string-append name "-" version)))) 249 (file-name (string-append name "-" version))))
249 (arguments 250 (arguments
250 (substitute-keyword-arguments (package-arguments ardour-3) 251 (substitute-keyword-arguments (package-arguments ardour-3)