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

37 lines
1,023 B
Nix
Raw Normal View History

2017-02-26 14:34:49 +00:00
{ stdenv, fetchFromGitHub, fftw, gtk2, lv2, libsamplerate, libsndfile, pkgconfig, 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";
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
2017-02-26 14:34:49 +00:00
nativeBuildInputs = [ pkgconfig ];
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 stdenv.lib; {
homepage = http://factorial.hu/plugins/lv2/ir;
description = "Zero-latency, realtime, high performance signal convolver especially for creating reverb effects";
license = licenses.gpl2;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
};
}