2020-09-22 23:15:34 -07:00
|
|
|
{ stdenv, fetchFromGitHub, glib, libsndfile, lilv, lv2, pkgconfig, serd, sord, sratom }:
|
2015-05-27 11:55:12 -07:00
|
|
|
|
2020-09-22 23:15:34 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "lv2bm";
|
2020-09-22 23:15:34 -07:00
|
|
|
version = "1.1";
|
2015-05-27 11:55:12 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-06-15 03:43:33 -07:00
|
|
|
owner = "moddevices";
|
2015-05-27 11:55:12 -07:00
|
|
|
repo = "lv2bm";
|
2020-09-22 23:15:34 -07:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0vlppxfb9zbmffazs1kiyb79py66s8x9hihj36m2vz86zsq7ybl0";
|
2015-05-27 11:55:12 -07:00
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2020-09-22 23:15:34 -07:00
|
|
|
buildInputs = [ glib libsndfile lilv lv2 serd sord sratom ];
|
2015-05-27 11:55:12 -07:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
make install PREFIX=$out
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/portalmod/lv2bm";
|
2015-05-27 11:55:12 -07:00
|
|
|
description = "A benchmark tool for LV2 plugins";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|