parent
7957310a66
commit
db19c4e24e
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -6135,6 +6135,16 @@ let
|
|||
libstdcpp = gcc33.gcc;
|
||||
};
|
||||
|
||||
ardour = import ../applications/audio/ardour {
|
||||
inherit fetchurl stdenv lib pkgconfig scons boost redland librdf_raptor
|
||||
librdf_rasqal jackaudio flac libsamplerate alsaLib libxml2 libxslt
|
||||
libsndfile libsigcxx libusb cairomm librdf liblo fftw fftwSinglePrec
|
||||
aubio libmad;
|
||||
inherit (gtkLibs) glib pango gtk glibmm gtkmm;
|
||||
|
||||
inherit (gnome) libgnomecanvas ;
|
||||
};
|
||||
|
||||
audacious = import ../applications/audio/audacious/player.nix {
|
||||
inherit fetchurl stdenv pkgconfig libmowgli libmcs gettext xlibs dbus_glib;
|
||||
inherit (gnome) libglade;
|
||||
|
|
Loading…
Reference in New Issue