2017-11-07 17:48:20 +03:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, alsaLib ? null, fftwFloat, fltk13
|
|
|
|
, fluidsynth ? null, lame ? null, libgig ? null, libjack2 ? null, libpulseaudio ? null
|
|
|
|
, libsamplerate, libsoundio ? null, libsndfile, libvorbis ? null, portaudio ? null
|
2018-07-16 00:06:49 +03:00
|
|
|
, qtbase, qtx11extras, qttools, SDL ? null }:
|
2011-04-23 03:00:55 +04:00
|
|
|
|
2016-02-24 15:57:20 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2011-04-23 03:00:55 +04:00
|
|
|
name = "lmms-${version}";
|
2018-07-16 00:06:49 +03:00
|
|
|
version = "1.2.0-rc6";
|
2011-04-23 03:00:55 +04:00
|
|
|
|
2016-02-24 15:57:20 +03:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "LMMS";
|
|
|
|
repo = "lmms";
|
|
|
|
rev = "v${version}";
|
2018-07-16 00:06:49 +03:00
|
|
|
sha256 = "1pqir5srfrknfd8nmbz565ymq18ffw8d8k9pbmzggaxvlcr12b25";
|
|
|
|
fetchSubmodules = true;
|
2011-04-23 03:00:55 +04:00
|
|
|
};
|
|
|
|
|
2017-11-07 17:48:20 +03:00
|
|
|
nativeBuildInputs = [ cmake qttools pkgconfig ];
|
|
|
|
|
2014-01-19 16:20:43 +04:00
|
|
|
buildInputs = [
|
2017-11-07 17:48:20 +03:00
|
|
|
alsaLib
|
|
|
|
fftwFloat
|
|
|
|
fltk13
|
|
|
|
fluidsynth
|
|
|
|
lame
|
|
|
|
libgig
|
|
|
|
libjack2
|
|
|
|
libpulseaudio
|
|
|
|
libsamplerate
|
|
|
|
libsndfile
|
|
|
|
libsoundio
|
|
|
|
libvorbis
|
|
|
|
portaudio
|
|
|
|
qtbase
|
2018-07-16 00:06:49 +03:00
|
|
|
qtx11extras
|
2017-11-07 17:48:20 +03:00
|
|
|
SDL # TODO: switch to SDL2 in the next version
|
2014-01-19 16:20:43 +04:00
|
|
|
];
|
2011-04-23 03:00:55 +04:00
|
|
|
|
2017-11-07 17:48:20 +03:00
|
|
|
cmakeFlags = [ "-DWANT_QT5=ON" ];
|
2014-06-26 23:25:07 +04:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-04-23 03:00:55 +04:00
|
|
|
meta = with stdenv.lib; {
|
2017-11-07 17:48:20 +03:00
|
|
|
description = "DAW similar to FL Studio (music production software)";
|
2017-08-30 18:22:58 +03:00
|
|
|
homepage = https://lmms.io;
|
2011-04-23 03:00:55 +04:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2017-11-07 17:48:20 +03:00
|
|
|
maintainers = with maintainers; [ goibhniu yegortimoshenko ];
|
2011-04-23 03:00:55 +04:00
|
|
|
};
|
|
|
|
}
|