mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
lv2bm init at git-2015-04-10
This commit is contained in:
parent
c0f09411e8
commit
0cb17b0505
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;
|
||||
};
|
||||
}
|
@ -11655,6 +11655,8 @@ let
|
||||
gtk = gtk2;
|
||||
};
|
||||
|
||||
lv2bm = callPackage ../applications/audio/lv2bm { };
|
||||
|
||||
lynx = callPackage ../applications/networking/browsers/lynx { };
|
||||
|
||||
lyx = callPackage ../applications/misc/lyx { };
|
||||
|
Loading…
Reference in New Issue
Block a user