84bc6d64ba
(And while at it, gst-vaapi 0.6.0 -> 0.6.1.) * gst-editing-services grew additional build time dependencies, flex and perl. * gst-libav switched from libav to ffmpeg as "libav" provider, see http://gstreamer.freedesktop.org/releases/1.6/. Without using ffmpeg, one may hit issues such as this (which I initially did): (gst-plugin-scanner:19751): GStreamer-WARNING **: Failed to load plugin '/nix/store/0wgpq2yx9wrkp2mh4rn1c7zbiq2bqa2l-gst-libav-1.6.1/lib/gstreamer-1.0/libgstlibav.so': /nix/store/0wgpq2yx9wrkp2mh4rn1c7zbiq2bqa2l-gst-libav-1.6.1/lib/gstreamer-1.0/libgstlibav.so: undefined symbol: av_frame_get_sample_rate
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, python, gstreamer, gobjectIntrospection
|
|
, orc, alsaLib, libXv, pango, libtheora
|
|
, cdparanoia, libvisual, libintlOrEmpty
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gst-plugins-base-1.6.1";
|
|
|
|
meta = {
|
|
description = "Base plugins and helper libraries";
|
|
homepage = "http://gstreamer.freedesktop.org";
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with stdenv.lib.maintainers; [ iyzsong ];
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/src/gst-plugins-base/${name}.tar.xz";
|
|
sha256 = "18sbyjcp281zb3bsqji3pglsdsxi0s6ai7rx90sx8cpflkxdqcwm";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig python gobjectIntrospection
|
|
];
|
|
|
|
buildInputs = [
|
|
orc libXv pango libtheora cdparanoia
|
|
]
|
|
++ libintlOrEmpty
|
|
++ stdenv.lib.optional stdenv.isLinux alsaLib
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) libvisual;
|
|
|
|
propagatedBuildInputs = [ gstreamer ];
|
|
|
|
configureFlags = if stdenv.isDarwin then [
|
|
# Does not currently build on Darwin
|
|
"--disable-libvisual"
|
|
# Undefined symbols _cdda_identify and _cdda_identify_scsi in cdparanoia
|
|
"--disable-cdparanoia"
|
|
] else null;
|
|
|
|
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
|
|
|
|
enableParallelBuilding = true;
|
|
}
|
|
|