diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2015-06-28 14:01:52 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-06-28 14:34:08 +0200 |
commit | fb029d463d9f7410be92668844797760ec38ef19 (patch) | |
tree | 2b5d42835438ee01ab047e683497aa05b1133830 /gnu/packages/audio.scm | |
parent | 58593975b076593420983ec599c2ffadb9243424 (diff) | |
download | patches-fb029d463d9f7410be92668844797760ec38ef19.tar patches-fb029d463d9f7410be92668844797760ec38ef19.tar.gz |
gnu: ardour: Update to 4.1.
* gnu/packages/audio.scm (ardour): Update to 4.1.
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 583e593309..c3341e5688 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -227,12 +227,13 @@ engineers, musicians, soundtrack editors and composers.") (define-public ardour (package (inherit ardour-3) (name "ardour") - (version "4.0") + ;; We pick the commit after 4.1 because it fixes a build problem. + (version "4.1-5aa834e") (source (origin (method git-fetch) (uri (git-reference (url "git://git.ardour.org/ardour/ardour.git") - (commit version))) + (commit (cadr (string-split version #\-))))) (snippet ;; Ardour expects this file to exist at build time. It can be ;; created from a git checkout with: @@ -241,10 +242,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.0\" ; }")))) +namespace ARDOUR { const char* revision = \"4.1\" ; }")))) (sha256 (base32 - "0a8bydc24xv0cahdqfaxdmi1f43cyr9psiyshxpbrkdqw2c7a4xi")) + "0pfmxlscnwyqmgc89cdwrsk1769lr89dirfnpjbxj9zgcns6zqgb")) (file-name (string-append name "-" version)))) (arguments (substitute-keyword-arguments (package-arguments ardour-3) |