2016-10-30 16:53:56 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
2016-09-16 08:55:50 +00:00
|
|
|
, libltc, libsndfile, libsamplerate, ftgl, freefont_ttf, libjack2
|
2017-04-16 09:33:04 +00:00
|
|
|
, mesa_glu, lv2, gtk2, cairo, pango, fftwFloat, zita-convolver }:
|
2015-05-08 11:07:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-06-14 23:43:57 +00:00
|
|
|
version = "20170428";
|
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";
|
2017-06-14 23:43:57 +00:00
|
|
|
sha256 = "0yi82rak2277x4nzzr5zwbsnha5pi61w975c8src2iwar2b6m0xg";
|
2015-05-08 11:07:31 +00:00
|
|
|
};
|
|
|
|
|
2017-04-16 09:33:04 +00:00
|
|
|
buildInputs = [ mesa_glu ftgl freefont_ttf libjack2 libltc libsndfile libsamplerate lv2 gtk2 cairo pango fftwFloat pkgconfig zita-convolver];
|
2015-05-08 11:07:31 +00:00
|
|
|
|
2016-10-30 16:53:56 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" "FONTFILE=${freefont_ttf}/share/fonts/truetype/FreeSansBold.ttf" ];
|
2015-05-08 11:07:31 +00:00
|
|
|
|
2016-10-30 16:53:56 +00:00
|
|
|
patchPhase = ''
|
|
|
|
patchShebangs ./stepseq.lv2/gridgen.sh
|
|
|
|
sed -i 's|/usr/include/zita-convolver.h|${zita-convolver}/include/zita-convolver.h|g' ./convoLV2/Makefile
|
|
|
|
'';
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
2015-05-08 11:07:31 +00:00
|
|
|
}
|