01c0be6ece
1.4.0 -> 1.4.1
29 lines
739 B
Nix
29 lines
739 B
Nix
{ stdenv, fetchurl, pkgconfig, perl, bison, flex, python, gobjectIntrospection
|
|
, glib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gstreamer-1.4.1";
|
|
|
|
meta = {
|
|
description = "Open source multimedia framework";
|
|
homepage = "http://gstreamer.freedesktop.org";
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ iyzsong ];
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/src/gstreamer/${name}.tar.xz";
|
|
sha256 = "5638f75003282135815c0077d491da11e9a884ad91d4ba6ab3cc78bae0fb452e";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig perl bison flex python gobjectIntrospection
|
|
];
|
|
|
|
propagatedBuildInputs = [ glib ];
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
}
|