nixpkgs/pkgs/applications/audio/ir.lv2/default.nix

44 lines
1.2 KiB
Nix
Raw Normal View History

2017-02-26 17:34:49 +03:00
{ stdenv, fetchFromGitHub, fftw, gtk2, lv2, libsamplerate, libsndfile, pkgconfig, zita-convolver }:
2015-05-06 00:23:26 +03:00
stdenv.mkDerivation rec {
pname = "ir.lv2";
2018-08-18 19:47:39 +03:00
version = "1.2.4";
2015-05-06 00:23:26 +03:00
2017-02-26 17:34:49 +03:00
src = fetchFromGitHub {
owner = "tomszilagyi";
repo = "ir.lv2";
2019-09-09 02:38:31 +03:00
rev = version;
2018-08-18 19:47:39 +03:00
sha256 = "1p6makmgr898fakdxzl4agh48qqwgv1k1kwm8cgq187n0mhiknp6";
2015-05-06 00:23:26 +03:00
};
2017-02-26 17:34:49 +03:00
buildInputs = [ fftw gtk2 lv2 libsamplerate libsndfile zita-convolver ];
2015-05-06 00:23:26 +03:00
2017-02-26 17:34:49 +03:00
nativeBuildInputs = [ pkgconfig ];
2020-06-05 14:17:46 +03: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 17:34:49 +03:00
postBuild = "make convert4chan";
2015-05-06 00:23:26 +03:00
installPhase = ''
2015-08-09 16:13:50 +03:00
mkdir -p "$out/bin"
2015-05-06 00:23:26 +03:00
mkdir "$out/include"
2015-08-09 16:13:50 +03:00
mkdir -p "$out/share/doc"
2015-05-06 00:23:26 +03:00
2018-08-18 19:47:39 +03:00
make PREFIX="$out" INSTDIR="$out/lib/lv2" install
2015-05-06 00:23:26 +03:00
install -Dm755 convert4chan "$out/bin/convert4chan"
'';
meta = with stdenv.lib; {
homepage = "http://factorial.hu/plugins/lv2/ir";
2015-05-06 00:23:26 +03:00
description = "Zero-latency, realtime, high performance signal convolver especially for creating reverb effects";
license = licenses.gpl2;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
};
}