Compare commits

...

4 Commits

Author SHA1 Message Date
nek0 29f9e803fc lmms: add missing dependency 2019-11-20 10:54:27 +01:00
nek0 2dbc0dca7c lmms: limit platforms 2019-11-20 10:41:21 +01:00
nek0 c854a63761 lmms: implement better solution 2019-11-20 10:40:42 +01:00
nek0 3f0579f8fc lmms: fix qt5 2019-11-17 14:26:36 +01:00
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, alsaLib ? null, fftwFloat, fltk13
, fluidsynth_1 ? null, lame ? null, libgig ? null, libjack2 ? null, libpulseaudio ? null
, libsamplerate, libsoundio ? null, libsndfile, libvorbis ? null, portaudio ? null
, qtbase, qtx11extras, qttools, SDL ? null }:
, qtbase, qtx11extras, qttools, SDL ? null, mkDerivation }:
stdenv.mkDerivation rec {
mkDerivation rec {
pname = "lmms";
version = "1.2.0-rc7";
@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
description = "DAW similar to FL Studio (music production software)";
homepage = https://lmms.io;
license = licenses.gpl2Plus;
platforms = platforms.linux;
platforms = [ "x86_64-linux" "i686-linux" ];
maintainers = with maintainers; [ goibhniu yegortimoshenko ];
};
}