2023-04-02 12:20:51 +00:00
|
|
|
{ lib, fetchFromGitHub, fetchpatch, cmake, pkg-config, alsa-lib ? null, carla ? null, fftwFloat, fltk13
|
2021-10-13 14:38:55 +00:00
|
|
|
, fluidsynth ? null, lame ? null, libgig ? null, libjack2 ? null, libpulseaudio ? null
|
2017-11-07 14:48:20 +00:00
|
|
|
, libsamplerate, libsoundio ? null, libsndfile, libvorbis ? null, portaudio ? null
|
2019-11-24 17:55:22 +00:00
|
|
|
, qtbase, qtx11extras, qttools, SDL ? null, mkDerivation }:
|
2011-04-22 23:00:55 +00:00
|
|
|
|
2019-11-24 17:55:22 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "lmms";
|
2020-07-30 05:10:26 +00:00
|
|
|
version = "1.2.2";
|
2011-04-22 23:00:55 +00:00
|
|
|
|
2016-02-24 12:57:20 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "LMMS";
|
|
|
|
repo = "lmms";
|
|
|
|
rev = "v${version}";
|
2020-07-30 05:10:26 +00:00
|
|
|
sha256 = "006hwv1pbh3y5whsxkjk20hsbgwkzr4dawz43afq1gil69y7xpda";
|
2018-07-15 21:06:49 +00:00
|
|
|
fetchSubmodules = true;
|
2011-04-22 23:00:55 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ cmake qttools pkg-config ];
|
2017-11-07 14:48:20 +00:00
|
|
|
|
2014-01-19 12:20:43 +00:00
|
|
|
buildInputs = [
|
2023-04-02 12:20:51 +00:00
|
|
|
carla
|
2021-06-10 02:57:09 +00:00
|
|
|
alsa-lib
|
2017-11-07 14:48:20 +00:00
|
|
|
fftwFloat
|
|
|
|
fltk13
|
2021-10-13 14:38:55 +00:00
|
|
|
fluidsynth
|
2017-11-07 14:48:20 +00:00
|
|
|
lame
|
|
|
|
libgig
|
|
|
|
libjack2
|
|
|
|
libpulseaudio
|
|
|
|
libsamplerate
|
|
|
|
libsndfile
|
|
|
|
libsoundio
|
|
|
|
libvorbis
|
|
|
|
portaudio
|
|
|
|
qtbase
|
2018-07-15 21:06:49 +00:00
|
|
|
qtx11extras
|
2017-11-07 14:48:20 +00:00
|
|
|
SDL # TODO: switch to SDL2 in the next version
|
2014-01-19 12:20:43 +00:00
|
|
|
];
|
2011-04-22 23:00:55 +00:00
|
|
|
|
2023-04-02 12:20:51 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://raw.githubusercontent.com/archlinux/svntogit-community/cf64acc45e3264c6923885867e2dbf8b7586a36b/trunk/lmms-carla-export.patch";
|
|
|
|
sha256 = "sha256-wlSewo93DYBN2PvrcV58dC9kpoo9Y587eCeya5OX+j4=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-11-07 14:48:20 +00:00
|
|
|
cmakeFlags = [ "-DWANT_QT5=ON" ];
|
2014-06-26 19:25:07 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-11-07 14:48:20 +00:00
|
|
|
description = "DAW similar to FL Studio (music production software)";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://lmms.io";
|
2011-04-22 23:00:55 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2019-11-24 17:55:22 +00:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
2021-12-31 18:48:55 +00:00
|
|
|
maintainers = with maintainers; [ goibhniu yana ];
|
2011-04-22 23:00:55 +00:00
|
|
|
};
|
|
|
|
}
|