From e56d84e5418f8adbc4ab6f2ad6a95bf50bd5afc8 Mon Sep 17 00:00:00 2001 From: Cillian de Roiste Date: Mon, 9 May 2011 20:27:06 +0000 Subject: [PATCH] Alpha 2 is quite old, and they haven't tagged Alpha 3 or 4 so updating to a recent revision instead svn path=/nixpkgs/trunk/; revision=27204 --- pkgs/applications/audio/ardour/ardour3.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/audio/ardour/ardour3.nix b/pkgs/applications/audio/ardour/ardour3.nix index 97fe03dc9af..6705afcfb54 100644 --- a/pkgs/applications/audio/ardour/ardour3.nix +++ b/pkgs/applications/audio/ardour/ardour3.nix @@ -4,13 +4,17 @@ libgnomecanvas, libgnomecanvasmm, liblo, libmad, libogg, librdf, librdf_raptor, librdf_rasqal, libsamplerate, libsigcxx, libsndfile, libusb, libuuid, libxml2, libxslt, pango, perl, pkgconfig, python }: +let + rev = "9484"; +in + stdenv.mkDerivation { - name = "ardour-3.0-alpha2"; + name = "ardour-3.0-${rev}"; src = fetchsvn { - url = http://subversion.ardour.org/svn/ardour2/tags/3.0-alpha2; - rev = 9198; - sha256 = "1ghz1fd07bpp2696z0yx3ci787c7wh0bwnbrpjhx2hx0zl3brc1h"; + url = http://subversion.ardour.org/svn/ardour2/branches/3.0; + inherit rev; + sha256 = "13j490kw66sslxibfab8hmm2k6gapvsriqa4av02y438dr1k4skf"; }; buildInputs = [ alsaLib aubio boost cairomm curl fftw fftwSinglePrec @@ -20,7 +24,7 @@ stdenv.mkDerivation { libxml2 libxslt pango perl pkgconfig python ]; patchPhase = '' - printf '#include "ardour/svn_revision.h"\nnamespace ARDOUR { const char* svn_revision = \"9198\"; }\n' > libs/ardour/svn_revision.cc + printf '#include "ardour/svn_revision.h"\nnamespace ARDOUR { const char* svn_revision = \"${rev}\"; }\n' > libs/ardour/svn_revision.cc sed -e 's|^#!/usr/bin/perl.*$|#!${perl}/bin/perl|g' -i tools/fmt-bindings sed -e 's|^#!/usr/bin/env.*$|#!${perl}/bin/perl|g' -i tools/*.pl '';