2017-02-26 14:34:49 +00:00
|
|
|
{ stdenv, fetchFromGitHub, fftw, gtk2, lv2, libsamplerate, libsndfile, pkgconfig, zita-convolver }:
|
2015-05-05 22:23:26 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ir.lv2";
|
2018-08-18 17:47:39 +01:00
|
|
|
version = "1.2.4";
|
2015-05-05 22:23:26 +01:00
|
|
|
|
2017-02-26 14:34:49 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tomszilagyi";
|
|
|
|
repo = "ir.lv2";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2018-08-18 17:47:39 +01:00
|
|
|
sha256 = "1p6makmgr898fakdxzl4agh48qqwgv1k1kwm8cgq187n0mhiknp6";
|
2015-05-05 22:23:26 +01:00
|
|
|
};
|
|
|
|
|
2017-02-26 14:34:49 +00:00
|
|
|
buildInputs = [ fftw gtk2 lv2 libsamplerate libsndfile zita-convolver ];
|
2015-05-05 22:23:26 +01:00
|
|
|
|
2017-02-26 14:34:49 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2020-06-05 12:17:46 +01:00
|
|
|
postPatch = ''
|
|
|
|
# Fix build with lv2 1.18: https://github.com/tomszilagyi/ir.lv2/pull/20
|
|
|
|
find . -type f -exec fgrep -q LV2UI_Descriptor {} \; \
|
|
|
|
-exec sed -i {} -e 's/const struct _\?LV2UI_Descriptor/const LV2UI_Descriptor/' \;
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
2017-02-26 14:34:49 +00:00
|
|
|
postBuild = "make convert4chan";
|
2015-05-05 22:23:26 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2015-08-09 14:13:50 +01:00
|
|
|
mkdir -p "$out/bin"
|
2015-05-05 22:23:26 +01:00
|
|
|
mkdir "$out/include"
|
2015-08-09 14:13:50 +01:00
|
|
|
mkdir -p "$out/share/doc"
|
2015-05-05 22:23:26 +01:00
|
|
|
|
2018-08-18 17:47:39 +01:00
|
|
|
make PREFIX="$out" INSTDIR="$out/lib/lv2" install
|
2015-05-05 22:23:26 +01:00
|
|
|
install -Dm755 convert4chan "$out/bin/convert4chan"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://factorial.hu/plugins/lv2/ir";
|
2015-05-05 22:23:26 +01:00
|
|
|
description = "Zero-latency, realtime, high performance signal convolver especially for creating reverb effects";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|