summary refs log tree commit diff
path: root/pkgs/applications/audio/ardour/ardour3.nix
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2013-03-16 16:33:16 +0100
committerCillian de Róiste <goibhniu@fsfe.org>2013-03-16 16:33:16 +0100
commit2b07e1bf4ca680cc9142156e5ac72571284bb147 (patch)
treebdcbfe76cd9fb991b7bcd3230f00eb6c4e2ac5cf /pkgs/applications/audio/ardour/ardour3.nix
parent924be9b524f009ecb987368f93d7a9cdad07683d (diff)
downloadnixlib-2b07e1bf4ca680cc9142156e5ac72571284bb147.tar
nixlib-2b07e1bf4ca680cc9142156e5ac72571284bb147.tar.gz
nixlib-2b07e1bf4ca680cc9142156e5ac72571284bb147.tar.bz2
nixlib-2b07e1bf4ca680cc9142156e5ac72571284bb147.tar.lz
nixlib-2b07e1bf4ca680cc9142156e5ac72571284bb147.tar.xz
nixlib-2b07e1bf4ca680cc9142156e5ac72571284bb147.tar.zst
nixlib-2b07e1bf4ca680cc9142156e5ac72571284bb147.zip
Ardour3: update to the release of Ardour 3.0
A tarball is only available to subscribers or people who pay
to download it on the site. This project is GPL licensed but
users are strongly encouraged to support it financially
Diffstat (limited to 'pkgs/applications/audio/ardour/ardour3.nix')
-rw-r--r--pkgs/applications/audio/ardour/ardour3.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/applications/audio/ardour/ardour3.nix b/pkgs/applications/audio/ardour/ardour3.nix
index 8a5a65f8ed09..13990ec49e1b 100644
--- a/pkgs/applications/audio/ardour/ardour3.nix
+++ b/pkgs/applications/audio/ardour/ardour3.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchsvn, alsaLib, aubio, boost, cairomm, curl, fftw
+{ stdenv, fetchgit, alsaLib, aubio, boost, cairomm, curl, fftw
 , fftwSinglePrec, flac, glibc, glibmm, gtk, gtkmm, jackaudio
 , libgnomecanvas, libgnomecanvasmm, liblo, libmad, libogg, librdf
 , librdf_raptor, librdf_rasqal, libsamplerate, libsigcxx, libsndfile
@@ -6,17 +6,17 @@
 , perl, pkgconfig, python, serd, sord, sratom, suil }:
 
 let
-  # Ardour 3 RC2
-  rev = "14092";
+  # Ardour 3.0 tag
+  rev = "79db9422";
 in
 
 stdenv.mkDerivation {
-  name = "ardour3-svn-${rev}";
+  name = "ardour3";
 
-  src = fetchsvn {
-    url = http://subversion.ardour.org/svn/ardour2/branches/3.0;
+  src = fetchgit {
+    url = git://git.ardour.org/ardour/ardour.git;
     inherit rev;
-    sha256 = "1zyy74z3xcsdhrzw4g6y1qm1ai2fl3bgabscl0wn7m1kkscr9nzg";
+    sha256 = "cdbe4ca6d4b639fcd66a3d1cf9c2816b4755655c9d81bdd2417263f413aa7096";
   };
 
   buildInputs =