1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/gstreamer/libav/default.nix

36 lines
899 B
Nix
Raw Normal View History

2013-12-23 15:36:37 +00:00
{ stdenv, fetchurl, pkgconfig, python, yasm
2014-01-02 13:28:40 +00:00
, gst-plugins-base, orc, bzip2
, withSystemLibav ? true, libav ? null
2013-12-23 15:36:37 +00:00
}:
2014-01-02 13:28:40 +00:00
assert withSystemLibav -> libav != null;
2013-12-23 15:36:37 +00:00
stdenv.mkDerivation rec {
2014-02-17 02:37:48 +00:00
name = "gst-libav-1.2.3";
2013-12-23 15:36:37 +00:00
meta = {
homepage = "http://gstreamer.freedesktop.org";
license = stdenv.lib.licenses.lgpl2Plus;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ iyzsong ];
2013-12-23 15:36:37 +00:00
};
src = fetchurl {
url = "${meta.homepage}/src/gst-libav/${name}.tar.xz";
2014-02-17 02:37:48 +00:00
sha256 = "1mmwyp6wahrx73zxiv67bwh9dqp7fn86igy4rkv0vx2m17hzpizb";
2013-12-23 15:36:37 +00:00
};
2014-01-02 13:28:40 +00:00
configureFlags = stdenv.lib.optionalString withSystemLibav
"--with-system-libav";
nativeBuildInputs = with stdenv.lib;
[ pkgconfig python ]
++ optional (!withSystemLibav) yasm
;
2013-12-23 15:36:37 +00:00
2014-01-02 13:28:40 +00:00
buildInputs = with stdenv.lib;
[ gst-plugins-base orc bzip2 ]
++ optional withSystemLibav libav
;
2013-12-23 15:36:37 +00:00
}