nixpkgs/pkgs/applications/audio/plugin-torture/default.nix

30 lines
795 B
Nix
Raw Normal View History

2016-07-15 16:47:46 +00:00
{ stdenv, fetchFromGitHub, boost, ladspaH, lilv, lv2, pkgconfig, serd, sord, sratom }:
stdenv.mkDerivation rec {
2016-07-15 16:47:46 +00:00
name = "plugin-torture-${version}";
version = "5";
2016-07-15 16:47:46 +00:00
src = fetchFromGitHub {
owner = "cth103";
repo = "plugin-torture";
rev = "v${version}";
sha256 = "1mlgxjsyaz86wm4k32ll2w5nghjffnsdqlm6kjv02a4dpb2bfrih";
};
buildInputs = [ boost ladspaH lilv lv2 pkgconfig serd sord sratom ];
installPhase = ''
mkdir -p $out/bin
cp plugin-torture $out/bin/
2016-07-15 16:47:46 +00:00
cp find-safe-plugins $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;
};
}