01c0be6ece
1.4.0 -> 1.4.1
36 lines
882 B
Nix
36 lines
882 B
Nix
{ stdenv, fetchurl, pkgconfig, python, gstreamer, gobjectIntrospection
|
|
, orc, alsaLib, libXv, pango, libtheora
|
|
, cdparanoia, libvisual
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gst-plugins-base-1.4.1";
|
|
|
|
meta = {
|
|
description = "Base plugins and helper libraries";
|
|
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/gst-plugins-base/${name}.tar.xz";
|
|
sha256 = "aea9e25be6691bd3cc0785d005b2b5d70ce313a2c897901680a3f7e7cab5a499";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig python gobjectIntrospection
|
|
];
|
|
|
|
buildInputs = [
|
|
orc alsaLib libXv pango libtheora
|
|
cdparanoia libvisual
|
|
];
|
|
|
|
propagatedBuildInputs = [ gstreamer ];
|
|
|
|
enableParallelBuilding = true;
|
|
}
|
|
|