summary refs log blame commit diff
path: root/pkgs/applications/audio/lv2bm/default.nix
blob: f1eddb626245c2abf614f062394cc1ac4bc4e25d (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                            
                     
                  
                             

                         
                         
                   

                                                                    

    

                                                   












                                                     
{ stdenv, fetchFromGitHub, glib, lilv, lv2, pkgconfig, serd, sord, sratom }:

stdenv.mkDerivation {
  pname = "lv2bm";
  version = "git-2015-11-29";

  src = fetchFromGitHub {
    owner = "moddevices";
    repo = "lv2bm";
    rev = "e844931503b7597f45da6d61ff506bb9fca2e9ca";
    sha256 = "1rrz5sp04zjal6v34ldkl6fjj9xqidb8xm1iscjyljf6z4l516cx";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ glib lilv lv2 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;
  };
}