Updating qtractor to the latest release: 0.5.0

svn path=/nixpkgs/trunk/; revision=28019
This commit is contained in:
Cillian de Roiste 2011-07-31 14:04:45 +00:00
parent 492935270b
commit 5231ba050f
1 changed files with 9 additions and 12 deletions

View File

@ -1,22 +1,19 @@
{ alsaLib, autoconf, automake, dssi, fetchsvn, gtk, jackaudio, { alsaLib, autoconf, automake, dssi, fetchurl, gtk, jackaudio,
ladspaH, ladspaPlugins, liblo, libmad, libsndfile, libtool, libvorbis, ladspaH, ladspaPlugins, liblo, libmad, libsamplerate, libsndfile,
pkgconfig, qt4, rubberband, stdenv }: libtool, libvorbis, pkgconfig, qt4, rubberband, stdenv }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "svn-1992"; version = "0.5.0";
name = "qtractor-${version}"; name = "qtractor-${version}";
src = fetchsvn { src = fetchurl {
url = "http://qtractor.svn.sourceforge.net/svnroot/qtractor/trunk"; url = "mirror://sourceforge/qtractor/${name}.tar.gz";
rev = "1992"; sha256 = "de5991d2d29b2713d73a90ab29efc24db0be68d8e9ca328062d53d229e902e89";
sha256 = "10k0w5pzci21k1i32jzv5gdkbs34iv4hdn6dzp3n5048hvrp1hiy";
}; };
preConfigure = "make -f Makefile.svn";
buildInputs = [ alsaLib autoconf automake dssi gtk jackaudio ladspaH buildInputs = [ alsaLib autoconf automake dssi gtk jackaudio ladspaH
ladspaPlugins liblo libmad libsndfile libtool libvorbis pkgconfig ladspaPlugins liblo libmad libsamplerate libsndfile libtool
qt4 rubberband ]; libvorbis pkgconfig qt4 rubberband ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Audio/MIDI multi-track sequencer"; description = "Audio/MIDI multi-track sequencer";