Merge pull request #8021 from magnetophon/lv2bm-master
lv2bm init at git-2015-04-10
This commit is contained in:
commit
24bbb9718f
27
pkgs/applications/audio/lv2bm/default.nix
Normal file
27
pkgs/applications/audio/lv2bm/default.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -12810,6 +12810,8 @@ let
|
|||||||
gtk = gtk2;
|
gtk = gtk2;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lv2bm = callPackage ../applications/audio/lv2bm { };
|
||||||
|
|
||||||
lynx = callPackage ../applications/networking/browsers/lynx { };
|
lynx = callPackage ../applications/networking/browsers/lynx { };
|
||||||
|
|
||||||
lyx = callPackage ../applications/misc/lyx { };
|
lyx = callPackage ../applications/misc/lyx { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user