about summary refs log tree commit diff
path: root/pkgs/applications/audio/lv2bm
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetopon.nl>2015-05-27 20:55:12 +0200
committerBart Brouns <bart@magnetopon.nl>2015-05-27 23:12:23 +0200
commit0cb17b0505f7a8aa522a7901d93190b50099b73e (patch)
tree58a27b6a2ae4d617648c3637ed583445a18edeb9 /pkgs/applications/audio/lv2bm
parentc0f09411e832d5f21f122954fa4a72163ebe0284 (diff)
lv2bm init at git-2015-04-10
Diffstat (limited to 'pkgs/applications/audio/lv2bm')
-rw-r--r--pkgs/applications/audio/lv2bm/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/applications/audio/lv2bm/default.nix b/pkgs/applications/audio/lv2bm/default.nix
new file mode 100644
index 0000000000000..32a4f255abeef
--- /dev/null
+++ b/pkgs/applications/audio/lv2bm/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchFromGitHub, glib, lilv, lv2, pkgconfig, serd, sord, sratom }:
+
+stdenv.mkDerivation rec {
+  name = "lv2bm-${version}";
+  version = "git-2015-04-10";
+
+  src = fetchFromGitHub {
+    owner = "portalmod";
+    repo = "lv2bm";
+    rev = "08681624fc13eb700ec2b5cabedbffdf095e28b3";
+    sha256 = "11pi97jy4f4c3vsaizc8a6sw9hnhnanj6y1fil33yd9x7f8f0kbj";
+  };
+
+  buildInputs = [ glib lilv lv2 pkgconfig serd sord sratom ];
+
+  installPhase = ''
+    make install PREFIX=$out
+  '';
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/portalmod/lv2bm;
+    description = "A benchmark tool for LV2 plugins";
+    license = licenses.gpl3;
+    maintainers = [ maintainers.magnetophon ];
+    platforms = platforms.linux;
+  };
+}