2014-08-31 20:51:49 +01:00
|
|
|
{ stdenv, fetchurl, SDL, alsaLib, cmake, fftwSinglePrec, fluidsynth
|
|
|
|
, fltk13, jack2, libvorbis , libsamplerate, libsndfile, pkgconfig
|
|
|
|
, pulseaudio, qt4, freetype
|
2014-01-19 12:20:43 +00:00
|
|
|
}:
|
2011-04-23 00:00:55 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lmms-${version}";
|
2014-08-31 20:51:49 +01:00
|
|
|
version = "1.0.3";
|
2011-04-23 00:00:55 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-31 20:51:49 +01:00
|
|
|
url = "https://github.com/LMMS/lmms/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "191mfld3gspnxlgwcszp9kls58kdwrplj0rfw4zqsz90zdbsjnx3";
|
2011-04-23 00:00:55 +01:00
|
|
|
};
|
|
|
|
|
2014-01-19 12:20:43 +00:00
|
|
|
buildInputs = [
|
2014-08-31 20:51:49 +01:00
|
|
|
SDL alsaLib cmake fftwSinglePrec fltk13 fluidsynth jack2
|
|
|
|
libsamplerate libsndfile libvorbis pkgconfig pulseaudio qt4
|
2014-01-19 12:20:43 +00:00
|
|
|
];
|
2011-04-23 00:00:55 +01:00
|
|
|
|
2014-06-26 20:25:07 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-04-23 00:00:55 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Linux MultiMedia Studio";
|
|
|
|
homepage = "http://lmms.sourceforge.net";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
|
|
|
}
|