summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2009-09-21 09:58:41 +0000
committerMarc Weber <marco-oweber@gmx.de>2009-09-21 09:58:41 +0000
commitdb19c4e24e779fe5b4da55d4ba440835f9d35541 (patch)
tree2afbe0e5df8f285ec2fdc3fb1814d1c17f7a855c /pkgs/applications/audio
parent7957310a66d0abe01d0812047f7ad5d0458b8a4c (diff)
adding ardour
svn path=/nixpkgs/trunk/; revision=17327
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/ardour/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/applications/audio/ardour/default.nix b/pkgs/applications/audio/ardour/default.nix
new file mode 100644
index 000000000000..c8bfe880758c
--- /dev/null
+++ b/pkgs/applications/audio/ardour/default.nix
@@ -0,0 +1,33 @@
+args: with args;
+stdenv.mkDerivation {
+ name = "ardour-2.8.2";
+
+ # svn is the source to get official releases from their site.. :-(
+ src = /tmp/ardour-2.8.2.tar.bz2;
+
+ buildInputs = [
+ scons boost
+ pkgconfig fftw redland librdf_raptor librdf_rasqal jackaudio flac
+ libsamplerate alsaLib libxml2 libxslt libsndfile libsigcxx libusb cairomm
+ glib pango gtk glibmm gtkmm libgnomecanvas fftw librdf liblo aubio
+ fftw fftwSinglePrec libmad
+ ];
+
+ buildPhase = ''
+ ensureDir $out
+ export CXX=g++
+ scons PREFIX=$out install
+ '';
+ installPhase = ":";
+
+ meta = {
+ description = "multi-track hard disk recording software";
+ longDescription = ''
+ Also read "the importance of Paying Something on their homepage, pelase!"
+ '';
+ homepage = http://ardour.org/;
+ license = "GPLv2";
+ maintainers = [args.lib.maintainers.marcweber];
+ platforms = args.lib.platforms.linux;
+ };
+}