performous: use ffmpeg instead of libav

This commit is contained in:
Robert Schütz 2021-01-30 21:35:57 +01:00
parent fc8a4420da
commit 872b763710
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, gettext
, glibmm, libxmlxx, pango, librsvg
, SDL2, glew, boost, libav, portaudio, epoxy
, SDL2, glew, boost, ffmpeg, portaudio, epoxy
}:
stdenv.mkDerivation rec {
@ -27,6 +27,6 @@ stdenv.mkDerivation rec {
buildInputs = [
glibmm libxmlxx pango librsvg
SDL2 glew boost libav portaudio epoxy
SDL2 glew boost ffmpeg portaudio epoxy
];
}