nixpkgs/pkgs/development/libraries/gstreamer/gstreamermm/default.nix

39 lines
995 B
Nix
Raw Normal View History

2016-03-18 12:11:51 +00:00
{ stdenv, fetchurl, pkgconfig, file, glibmm, gst_all_1 }:
let
ver_maj = "1.8";
ver_min = "0";
2016-03-18 12:11:51 +00:00
in
stdenv.mkDerivation rec {
name = "gstreamermm-${ver_maj}.${ver_min}";
src = fetchurl {
url = "mirror://gnome/sources/gstreamermm/${ver_maj}/${name}.tar.xz";
sha256 = "0i4sk6ns4dyi4szk45bkm4kvl57l52lgm15p2wg2rhx2gr2w3qry";
2016-03-18 12:11:51 +00:00
};
2016-04-24 12:39:30 +00:00
2017-09-16 19:28:31 +00:00
patches = [
(fetchurl {
url = https://bug783628.bugzilla-attachments.gnome.org/attachment.cgi?id=354765;
sha256 = "082510a934bl05mz4cyakp8mfmd97cdj7vdrbvyqc4g58dcskvz0";
})
];
outputs = [ "out" "dev" ];
2016-04-24 12:39:30 +00: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 12:39:30 +00:00
2016-03-18 12:11:51 +00:00
meta = with stdenv.lib; {
description = "C++ interface for GStreamer";
homepage = https://gstreamer.freedesktop.org/bindings/cplusplus.html;
2016-03-18 12:11:51 +00:00
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ romildo ];
platforms = platforms.unix;
};
}