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