2013-12-23 16:36:37 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, perl, bison, flex, python, gobjectIntrospection
|
2014-08-30 11:23:50 +02:00
|
|
|
, glib
|
2013-12-23 16:36:37 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-10-18 12:00:22 +02:00
|
|
|
name = "gstreamer-1.4.3";
|
2013-12-23 16:36:37 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Open source multimedia framework";
|
|
|
|
homepage = "http://gstreamer.freedesktop.org";
|
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-01-02 03:33:36 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ iyzsong ];
|
2013-12-23 16:36:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/src/gstreamer/${name}.tar.xz";
|
2014-10-18 12:00:22 +02:00
|
|
|
sha256 = "11f155784d28b85a12b50d2fc8f91c6b75d9ca325cc76aaffba1a58d4c9549c9";
|
2013-12-23 16:36:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig perl bison flex python gobjectIntrospection
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ glib ];
|
2014-02-28 02:03:07 +01:00
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
2013-12-23 16:36:37 +01:00
|
|
|
}
|