mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
06fad89bd6
- Update homepage URLs - Add missing meta entries
35 lines
959 B
Nix
35 lines
959 B
Nix
{ stdenv, fetchurl, pkgconfig, file, glibmm, gst_all_1, gnome3 }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "gstreamermm";
|
|
version = "1.10.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "0q4dx9sncqbwgpzma0zvj6zssc279yl80pn8irb95qypyyggwn5y";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig file ];
|
|
|
|
propagatedBuildInputs = [ glibmm gst_all_1.gst-plugins-base ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
versionPolicy = "none"; # Unpredictable version stability
|
|
};
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "C++ interface for GStreamer";
|
|
homepage = "https://gstreamer.freedesktop.org/bindings/cplusplus.html";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
|
|
}
|