1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

melt: use ffmpeg instead of libav, fixes libx264 export

This commit is contained in:
Cillian de Róiste 2014-08-05 00:36:14 +02:00
parent 74d5d24ccc
commit 86133bb6bf

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, SDL, frei0r, jack2, libav, libdv, libsamplerate
{ stdenv, fetchurl, SDL, ffmpeg, frei0r, jack2, libdv, libsamplerate
, libvorbis, libxml2, makeWrapper, movit, pkgconfig, qt, sox
}:
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [
SDL frei0r jack2 libav libdv libsamplerate libvorbis libxml2
SDL ffmpeg frei0r jack2 libdv libsamplerate libvorbis libxml2
makeWrapper movit pkgconfig qt sox
];