2015-08-09 16:37:08 +00:00
|
|
|
{ stdenv, fetchFromGitHub, alsaLib, aubio, boost, cairomm, curl, doxygen, dbus, fftw
|
2015-06-27 07:17:52 +00:00
|
|
|
, fftwSinglePrec, flac, glibc, glibmm, graphviz, gtk, gtkmm, libjack2
|
2014-03-16 10:32:56 +00:00
|
|
|
, libgnomecanvas, libgnomecanvasmm, liblo, libmad, libogg, librdf
|
|
|
|
, librdf_raptor, librdf_rasqal, libsamplerate, libsigcxx, libsndfile
|
2015-05-28 01:02:01 +00:00
|
|
|
, libusb, libuuid, libxml2, libxslt, lilv-svn, lv2, makeWrapper, pango
|
|
|
|
, perl, pkgconfig, python, rubberband, serd, sord-svn, sratom, suil, taglib, vampSDK }:
|
2014-03-16 10:32:56 +00:00
|
|
|
|
|
|
|
let
|
2014-12-07 14:01:47 +00:00
|
|
|
|
|
|
|
# Ardour git repo uses a mix of annotated and lightweight tags. Annotated
|
|
|
|
# tags are used for MAJOR.MINOR versioning, and lightweight tags are used
|
|
|
|
# in-between; MAJOR.MINOR.REV where REV is the number of commits since the
|
|
|
|
# last annotated tag. A slightly different version string format is needed
|
|
|
|
# for the 'revision' info that is built into the binary; it is the format of
|
|
|
|
# "git describe" when _not_ on an annotated tag(!): MAJOR.MINOR-REV-HASH.
|
|
|
|
|
|
|
|
# Version to build.
|
2015-08-15 19:28:02 +00:00
|
|
|
tag = "4.2";
|
2014-12-07 14:01:47 +00:00
|
|
|
|
2014-03-16 10:32:56 +00:00
|
|
|
in
|
2009-09-21 15:55:24 +00:00
|
|
|
|
2012-03-16 22:28:21 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-03-16 10:32:56 +00:00
|
|
|
name = "ardour-${tag}";
|
2009-09-21 09:58:41 +00:00
|
|
|
|
2015-08-09 16:37:08 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Ardour";
|
|
|
|
repo = "ardour";
|
|
|
|
rev = "fe672c827cb2c08c94b1fa7e527d884c522a1af7";
|
|
|
|
sha256 = "12yfy9l5mnl96ix4s2qicp3m2zscli1a4bd50nk9v035pgf77s3f";
|
2009-09-21 15:55:24 +00:00
|
|
|
};
|
2009-09-21 09:58:41 +00:00
|
|
|
|
2015-08-09 16:37:08 +00:00
|
|
|
buildInputs =
|
2015-05-28 01:02:01 +00:00
|
|
|
[ alsaLib aubio boost cairomm curl doxygen dbus fftw fftwSinglePrec flac glibc
|
2015-06-27 07:17:52 +00:00
|
|
|
glibmm graphviz gtk gtkmm libjack2 libgnomecanvas libgnomecanvasmm liblo
|
2015-05-28 01:02:01 +00:00
|
|
|
libmad libogg librdf librdf_raptor librdf_rasqal libsamplerate
|
|
|
|
libsigcxx libsndfile libusb libuuid libxml2 libxslt lilv-svn lv2
|
|
|
|
makeWrapper pango perl pkgconfig python rubberband serd sord-svn sratom suil taglib vampSDK
|
|
|
|
];
|
2012-03-16 22:28:21 +00:00
|
|
|
|
2014-03-16 10:32:56 +00:00
|
|
|
patchPhase = ''
|
2015-08-15 08:33:24 +00:00
|
|
|
printf '#include "libs/ardour/ardour/revision.h"\nnamespace ARDOUR { const char* revision = \"${tag}-${builtins.substring 0 8 src.rev}\"; }\n' > libs/ardour/revision.cc
|
2014-03-16 10:32:56 +00:00
|
|
|
sed 's|/usr/include/libintl.h|${glibc}/include/libintl.h|' -i wscript
|
2015-05-28 01:02:01 +00:00
|
|
|
patchShebangs ./tools/
|
2009-09-21 09:58:41 +00:00
|
|
|
'';
|
2013-03-02 20:17:30 +00:00
|
|
|
|
2015-05-28 01:02:01 +00:00
|
|
|
configurePhase = "python waf configure --optimize --docs --with-backends=jack,alsa --prefix=$out";
|
2014-03-16 10:32:56 +00:00
|
|
|
|
|
|
|
buildPhase = "python waf";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
python waf install
|
2014-07-29 16:27:38 +00:00
|
|
|
|
|
|
|
# Install desktop file
|
|
|
|
mkdir -p "$out/share/applications"
|
|
|
|
cat > "$out/share/applications/ardour.desktop" << EOF
|
|
|
|
[Desktop Entry]
|
2015-05-03 11:03:41 +00:00
|
|
|
Name=Ardour 4
|
2014-07-29 16:27:38 +00:00
|
|
|
GenericName=Digital Audio Workstation
|
|
|
|
Comment=Multitrack harddisk recorder
|
2015-05-03 11:03:41 +00:00
|
|
|
Exec=$out/bin/ardour4
|
|
|
|
Icon=$out/share/ardour4/icons/ardour_icon_256px.png
|
2014-07-29 16:27:38 +00:00
|
|
|
Terminal=false
|
|
|
|
Type=Application
|
|
|
|
X-MultipleArgs=false
|
|
|
|
Categories=GTK;Audio;AudioVideoEditing;AudioVideo;Video;
|
|
|
|
EOF
|
2014-03-16 10:32:56 +00:00
|
|
|
'';
|
2009-09-21 09:58:41 +00:00
|
|
|
|
2014-03-16 10:32:56 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-02-11 14:31:49 +00:00
|
|
|
description = "Multi-track hard disk recording software";
|
2009-09-21 09:58:41 +00:00
|
|
|
longDescription = ''
|
2015-05-03 18:25:57 +00:00
|
|
|
Ardour is a digital audio workstation (DAW), You can use it to
|
|
|
|
record, edit and mix multi-track audio and midi. Produce your
|
|
|
|
own CDs. Mix video soundtracks. Experiment with new ideas about
|
|
|
|
music and sound.
|
|
|
|
|
|
|
|
Please consider supporting the ardour project financially:
|
|
|
|
https://community.ardour.org/node/8288
|
2009-09-21 09:58:41 +00:00
|
|
|
'';
|
|
|
|
homepage = http://ardour.org/;
|
2014-03-16 10:32:56 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2009-09-21 09:58:41 +00:00
|
|
|
};
|
|
|
|
}
|