2019-04-25 07:46:07 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, file, glibmm, gst_all_1, gnome3 }:
|
2016-03-18 12:11:51 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-04-25 07:46:07 +01:00
|
|
|
pname = "gstreamermm";
|
|
|
|
version = "1.10.0";
|
2016-03-18 12:11:51 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-25 07:46:07 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2018-01-12 18:52:29 +00:00
|
|
|
sha256 = "0q4dx9sncqbwgpzma0zvj6zssc279yl80pn8irb95qypyyggwn5y";
|
2016-03-18 12:11:51 +00:00
|
|
|
};
|
2016-04-24 13:39:30 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-24 13:39:30 +01:00
|
|
|
|
2016-03-18 12:11:51 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig file ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ glibmm gst_all_1.gst-plugins-base ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2016-04-24 13:39:30 +01:00
|
|
|
|
2019-04-25 07:46:07 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
versionPolicy = "none"; # Unpredictable version stability
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-03-18 12:11:51 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C++ interface for GStreamer";
|
2019-05-04 14:59:55 +01:00
|
|
|
homepage = "https://gstreamer.freedesktop.org/bindings/cplusplus.html";
|
2016-03-18 12:11:51 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2018-03-18 21:22:27 +00:00
|
|
|
platforms = platforms.linux;
|
2018-01-12 18:52:29 +00:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-03-18 12:11:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|