nixpkgs/pkgs/applications/audio/lv2bm/default.nix

29 lines
746 B
Nix
Raw Normal View History

2015-05-27 18:55:12 +00:00
{ stdenv, fetchFromGitHub, glib, lilv, lv2, pkgconfig, serd, sord, sratom }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "lv2bm";
version = "git-2015-11-29";
2015-05-27 18:55:12 +00:00
src = fetchFromGitHub {
owner = "moddevices";
2015-05-27 18:55:12 +00:00
repo = "lv2bm";
rev = "e844931503b7597f45da6d61ff506bb9fca2e9ca";
sha256 = "1rrz5sp04zjal6v34ldkl6fjj9xqidb8xm1iscjyljf6z4l516cx";
2015-05-27 18:55:12 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib lilv lv2 serd sord sratom ];
2015-05-27 18:55:12 +00:00
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;
};
}