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
|
2018-02-24 12:59:47 +00:00
|
|
|
, libGLU, lv2, gtk2, cairo, pango, fftwFloat, zita-convolver }:
|
2015-05-08 11:07:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-07-18 22:38:55 +00:00
|
|
|
version = "20200714";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "x42-plugins";
|
2015-05-08 11:07:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://gareus.org/misc/x42-plugins/${pname}-${version}.tar.xz";
|
2020-07-18 22:38:55 +00:00
|
|
|
sha256 = "1av05ykph8x67018hm9zfgh1vk0zi39mvrsxkj6bm4hkarxf0vvl";
|
2015-05-08 11:07:31 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-24 12:59:47 +00:00
|
|
|
buildInputs = [ libGLU ftgl freefont_ttf libjack2 libltc libsndfile libsamplerate lv2 gtk2 cairo pango fftwFloat zita-convolver ];
|
2017-10-22 21:30:10 +00:00
|
|
|
|
|
|
|
# Don't remove this. The default fails with 'do not know how to unpack source archive'
|
|
|
|
# every now and then on Hydra. No idea why.
|
|
|
|
unpackPhase = ''
|
|
|
|
tar xf $src
|
|
|
|
sourceRoot=$(echo x42-plugins-*)
|
|
|
|
chmod -R u+w $sourceRoot
|
|
|
|
'';
|
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
|
2020-04-21 12:41:10 +00:00
|
|
|
patchShebangs ./matrixmixer.lv2/genttl.sh
|
|
|
|
patchShebangs ./matrixmixer.lv2/genhead.sh
|
2016-10-30 16:53:56 +00:00
|
|
|
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";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/x42/x42-plugins";
|
2016-10-30 16:53:56 +00:00
|
|
|
maintainers = with maintainers; [ magnetophon ];
|
|
|
|
license = licenses.gpl2;
|
2018-11-27 17:31:18 +00:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2016-10-30 16:53:56 +00:00
|
|
|
};
|
2015-05-08 11:07:31 +00:00
|
|
|
}
|