add plugin-torture: a tool to test LADSPA and LV2 plugins

This commit is contained in:
Bart Brouns 2015-05-12 16:28:32 +02:00
parent 82ba13111c
commit 73e1036029
2 changed files with 30 additions and 0 deletions

@ -0,0 +1,28 @@
{ stdenv, fetchgit, boost, ladspaH, lilv, lv2, pkgconfig, serd, sord, sratom }:
stdenv.mkDerivation rec {
name = "plugin-torture-git-${version}";
version = "2013-10-03";
src = fetchgit {
url = "https://github.com/cth103/plugin-torture";
rev = "9ee06016982bdfbaa215cd0468cc6ada6367462a";
sha256 = "bfe9213fd2c1451d7acc1381d63301c4e6ff69ce86d31a886ece5159ba850706";
};
buildInputs = [ boost ladspaH lilv lv2 pkgconfig serd sord sratom ];
installPhase = ''
mkdir -p $out/bin
cp plugin-torture $out/bin/
cp README $out/bin/
'';
meta = with stdenv.lib; {
homepage = https://github.com/cth103/plugin-torture;
description = "A tool to test LADSPA and LV2 plugins";
license = licenses.gpl2;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
};
}

@ -11848,6 +11848,8 @@ let
gtksharp = gtk-sharp;
};
plugin-torture = callPackage ../applications/audio/plugin-torture { };
pommed = callPackage ../os-specific/linux/pommed {
inherit (xorg) libXpm;
};