nixpkgs/pkgs/development/libraries/libav/0.8.x.nix
Vladimír Čunát b003138081 libav: major update and refactoring
Also leaving 0_8 branch, as it's compatible with older ffmpeg versions.
I'm planning that all expressions will be able to switch easily
between ffmpeg and libav (whatever default we choose, but I prefer libav).
2013-08-13 20:08:26 +02:00

13 lines
281 B
Nix

{ stdenv, fetchurl, libav_9 }:
let derivSrc = libav_9.derivSrc // rec {
name = "libav-0.8.8";
src = fetchurl {
url = "http://libav.org/releases/${name}.tar.xz";
sha256 = "1wnbmbs0z4f55y8r9bwb63l04zn383l1avy4c9x1ffb2xccgcp79";
};
};
in stdenv.mkDerivation derivSrc