gstreamermm 1.0: init at 1.4.3
This commit is contained in:
parent
ab2b2670c8
commit
c0239360a4
@ -3,6 +3,8 @@
|
|||||||
rec {
|
rec {
|
||||||
gstreamer = callPackage ./core { };
|
gstreamer = callPackage ./core { };
|
||||||
|
|
||||||
|
gstreamermm = callPackage ./gstreamermm { };
|
||||||
|
|
||||||
gst-plugins-base = callPackage ./base { inherit gstreamer; };
|
gst-plugins-base = callPackage ./base { inherit gstreamer; };
|
||||||
|
|
||||||
gst-plugins-good = callPackage ./good { inherit gst-plugins-base; };
|
gst-plugins-good = callPackage ./good { inherit gst-plugins-base; };
|
||||||
|
29
pkgs/development/libraries/gstreamer/gstreamermm/default.nix
Normal file
29
pkgs/development/libraries/gstreamer/gstreamermm/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, file, glibmm, gst_all_1 }:
|
||||||
|
|
||||||
|
let
|
||||||
|
ver_maj = "1.4";
|
||||||
|
ver_min = "3";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "gstreamermm-${ver_maj}.${ver_min}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://gnome/sources/gstreamermm/${ver_maj}/${name}.tar.xz";
|
||||||
|
sha256 = "0bj6and9b26d32bq90l8nx5wqh2ikkh8dm7qwxyxfdvmrzhixhgi";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig file ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ glibmm gst_all_1.gst-plugins-base ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "C++ interface for GStreamer";
|
||||||
|
homepage = http://gstreamer.freedesktop.org/bindings/cplusplus.html;
|
||||||
|
license = licenses.lgpl21Plus;
|
||||||
|
maintainers = with maintainers; [ romildo ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user