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

44 lines
1.2 KiB
Nix
Raw Normal View History

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