2015-06-27 07:17:52 +00:00
|
|
|
{ stdenv, fetchurl, fetchgit, ftgl, freefont_ttf, libjack2, mesa_glu, pkgconfig
|
2016-08-03 13:08:05 +00:00
|
|
|
, libltc, libsndfile, libsamplerate, xz
|
2015-05-08 11:07:31 +00:00
|
|
|
, lv2, mesa, gtk2, cairo, pango, fftwFloat, zita-convolver }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-07-19 09:11:22 +00:00
|
|
|
version = "20160619";
|
2015-05-08 11:07:31 +00:00
|
|
|
name = "x42-plugins-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-07-19 09:11:22 +00:00
|
|
|
url = "http://gareus.org/misc/x42-plugins/${name}.tar.xz";
|
|
|
|
sha256 = "1ald0c5xbfkdq6g5xwyy8wmbi636m3k3gqrq16kbh46g0kld1as9";
|
2015-05-08 11:07:31 +00:00
|
|
|
};
|
|
|
|
|
2016-08-03 13:08:05 +00:00
|
|
|
buildInputs = [ xz mesa_glu ftgl freefont_ttf libjack2 libltc libsndfile libsamplerate lv2 mesa gtk2 cairo pango fftwFloat pkgconfig zita-convolver];
|
2015-05-08 11:07:31 +00:00
|
|
|
|
2015-08-09 19:23:20 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" "FONTFILE=${freefont_ttf}/share/fonts/truetype/FreeSansBold.ttf" "LIBZITACONVOLVER=${zita-convolver}/include/zita-convolver.h" ];
|
2015-05-08 11:07:31 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib;
|
|
|
|
{ description = "Collection of LV2 plugins by Robin Gareus";
|
|
|
|
homepage = https://github.com/x42/x42-plugins;
|
|
|
|
maintainers = with maintainers; [ magnetophon ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|