summary refs log tree commit diff
path: root/pkgs/applications/audio/plugin-torture
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetopon.nl>2015-05-12 16:28:32 +0200
committerBart Brouns <bart@magnetopon.nl>2015-05-12 16:28:32 +0200
commit73e10360290be7fbde87dd2c42ec9a234befdc04 (patch)
treea6111cb08aab51b6633544e5094169edfe0a7572 /pkgs/applications/audio/plugin-torture
parent82ba13111c72937b792edd40bcbebbda1d395c7c (diff)
downloadnixpkgs-73e10360290be7fbde87dd2c42ec9a234befdc04.tar
nixpkgs-73e10360290be7fbde87dd2c42ec9a234befdc04.tar.gz
nixpkgs-73e10360290be7fbde87dd2c42ec9a234befdc04.tar.bz2
nixpkgs-73e10360290be7fbde87dd2c42ec9a234befdc04.tar.lz
nixpkgs-73e10360290be7fbde87dd2c42ec9a234befdc04.tar.xz
nixpkgs-73e10360290be7fbde87dd2c42ec9a234befdc04.tar.zst
nixpkgs-73e10360290be7fbde87dd2c42ec9a234befdc04.zip
add plugin-torture: a tool to test LADSPA and LV2 plugins
Diffstat (limited to 'pkgs/applications/audio/plugin-torture')
-rw-r--r--pkgs/applications/audio/plugin-torture/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/audio/plugin-torture/default.nix b/pkgs/applications/audio/plugin-torture/default.nix
new file mode 100644
index 00000000000..91b3954de0d
--- /dev/null
+++ b/pkgs/applications/audio/plugin-torture/default.nix
@@ -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;
+  };
+}