33 lines
820 B
Nix
33 lines
820 B
Nix
|
{ stdenv, fetchurl, pkgconfig, python
|
||
|
, gst-plugins-base, orc, bzip2
|
||
|
, libv4l, libdv, libavc1394, libiec61883
|
||
|
, libvpx, speex, flac, taglib
|
||
|
, cairo, gdk_pixbuf, aalib, libcaca
|
||
|
, libsoup, pulseaudio
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "gst-plugins-good-1.2.1";
|
||
|
|
||
|
meta = {
|
||
|
homepage = "http://gstreamer.freedesktop.org";
|
||
|
license = stdenv.lib.licenses.gpl2Plus;
|
||
|
platforms = stdenv.lib.platforms.linux;
|
||
|
};
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "${meta.homepage}/src/gst-plugins-good/${name}.tar.xz";
|
||
|
sha256 = "660fa02dbe01086fcf702d87acc0ba5dde2559d6a11ecf438874afe504c50517";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ pkgconfig python ];
|
||
|
|
||
|
buildInputs = [
|
||
|
gst-plugins-base orc bzip2
|
||
|
libv4l libdv libavc1394 libiec61883
|
||
|
libvpx speex flac taglib
|
||
|
cairo gdk_pixbuf aalib libcaca
|
||
|
libsoup pulseaudio
|
||
|
];
|
||
|
}
|