lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 26 lines 708 B view raw
1{ lib, stdenv, fetchurl, pkg-config, SDL, SDL_image, libjack2 2}: 3 4stdenv.mkDerivation rec { 5 version = "0.9.3"; 6 pname = "meterbridge"; 7 8 src = fetchurl { 9 url = "http://plugin.org.uk/meterbridge/${pname}-${version}.tar.gz"; 10 sha256 = "0s7n3czfpil94vsd7iblv4xrck9c7zvsz4r3yfbkqcv85pjz1viz"; 11 }; 12 13 patches = [ ./buf_rect.patch ./fix_build_with_gcc-5.patch]; 14 15 buildInputs = 16 [ pkg-config SDL SDL_image libjack2 17 ]; 18 19 meta = with lib; { 20 description = "Various meters (VU, PPM, DPM, JF, SCO) for Jack Audio Connection Kit"; 21 homepage = "http://plugin.org.uk/meterbridge/"; 22 license = licenses.gpl2; 23 platforms = platforms.linux; 24 maintainers = [ maintainers.nico202 ]; 25 }; 26}