mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
bb76359293
Semi-automatic update. These checks were performed: - built on NixOS - found 0.9.3 with grep in /nix/store/647g97s9wbaysk2f7ch8wvk0ys3nv27h-meterbridge-0.9.3 - found 0.9.3 in filename of file in /nix/store/647g97s9wbaysk2f7ch8wvk0ys3nv27h-meterbridge-0.9.3 cc "@nico202"
27 lines
704 B
Nix
27 lines
704 B
Nix
{ stdenv, fetchurl, pkgconfig, SDL, SDL_image, libjack2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.3";
|
|
name = "meterbridge-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://plugin.org.uk/meterbridge/${name}.tar.gz";
|
|
sha256 = "0s7n3czfpil94vsd7iblv4xrck9c7zvsz4r3yfbkqcv85pjz1viz";
|
|
};
|
|
|
|
patches = [ ./buf_rect.patch ./fix_build_with_gcc-5.patch];
|
|
|
|
buildInputs =
|
|
[ pkgconfig SDL SDL_image libjack2
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Various meters (VU, PPM, DPM, JF, SCO) for Jack Audio Connection Kit";
|
|
homepage = http://plugin.org.uk/meterbridge/;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.nico202 ];
|
|
};
|
|
}
|