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

120 lines
2.7 KiB
Nix
Raw Normal View History

2019-10-02 10:03:58 -07:00
{ stdenv
, fetchurl
, fetchpatch
, meson
, ninja
, pkgconfig
, gettext
, gobject-introspection
, bison
, flex
, python3
, glib
, makeWrapper
, libcap
, libunwind
, darwin
, elfutils # for libdw
, bash-completion
2019-10-02 10:03:58 -07:00
, docbook_xsl
, docbook_xml_dtd_43
, gtk-doc
2018-04-23 10:31:36 -07:00
, lib
2019-06-21 11:01:33 -07:00
, CoreServices
2013-12-23 07:36:37 -08:00
}:
stdenv.mkDerivation rec {
pname = "gstreamer";
2019-12-05 09:27:46 -08:00
version = "1.16.2";
2013-12-23 07:36:37 -08:00
2019-10-02 10:03:58 -07:00
outputs = [ "out" "dev" "devdoc" ];
outputBin = "dev";
2013-12-23 07:36:37 -08:00
src = fetchurl {
2019-10-02 09:59:16 -07:00
url = "${meta.homepage}/src/${pname}/${pname}-${version}.tar.xz";
2019-12-05 09:27:46 -08:00
sha256 = "0kp93622y29pck8asvil1fmzf55s2gx76wv475a6izc3cwj49w73";
2013-12-23 07:36:37 -08:00
};
2018-04-23 10:31:36 -07:00
patches = [
./fix_pkgconfig_includedir.patch
2020-04-16 07:46:13 -07:00
# Fix build with bash-completion 2.10
# https://gitlab.freedesktop.org/gstreamer/gstreamer/merge_requests/436
(fetchpatch {
url = "https://gitlab.freedesktop.org/gstreamer/gstreamer/commit/dd2ec3681e2d38e13e01477efa36e851650690fb.patch";
sha256 = "07hwf67vndsibm1khvs4rfq30sbs9fss8k5vs502xc0kccbi1ih8";
2020-04-16 07:46:13 -07:00
})
];
2013-12-23 07:36:37 -08:00
nativeBuildInputs = [
2019-10-02 10:03:58 -07:00
meson
ninja
pkgconfig
gettext
bison
flex
python3
makeWrapper
glib
2019-10-02 10:03:58 -07:00
gobject-introspection
bash-completion
2019-10-02 10:03:58 -07:00
# documentation
gtk-doc
2019-10-02 10:03:58 -07:00
docbook_xsl
docbook_xml_dtd_43
2013-12-23 07:36:37 -08:00
];
buildInputs = [
bash-completion
] ++ lib.optionals stdenv.isLinux [
2019-10-02 10:03:58 -07:00
libcap
libunwind
elfutils
] ++ lib.optionals stdenv.isDarwin [
CoreServices
];
2013-12-23 07:36:37 -08:00
2019-10-02 10:03:58 -07:00
propagatedBuildInputs = [
glib
];
mesonFlags = [
"-Ddbghelp=disabled" # not needed as we already provide libunwind and libdw, and dbghelp is a fallback to those
"-Dexamples=disabled" # requires many dependencies and probably not useful for our users
2019-10-02 10:03:58 -07:00
] ++ lib.optionals stdenv.isDarwin [
2019-06-21 11:01:33 -07:00
# darwin.libunwind doesn't have pkgconfig definitions so meson doesn't detect it.
2019-10-02 10:03:58 -07:00
"-Dlibunwind=disabled"
"-Dlibdw=disabled"
];
postPatch = ''
patchShebangs \
gst/parse/get_flex_version.py \
gst/parse/gen_grammar.py.in \
gst/parse/gen_lex.py.in \
libs/gst/helpers/ptp_helper_post_install.sh
'';
postInstall = ''
for prog in "$dev/bin/"*; do
# We can't use --suffix here due to quoting so we craft the export command by hand
wrapProgram "$prog" --run 'export GST_PLUGIN_SYSTEM_PATH=$GST_PLUGIN_SYSTEM_PATH''${GST_PLUGIN_SYSTEM_PATH:+:}$(unset _tmp; for profile in $NIX_PROFILES; do _tmp="$profile/lib/gstreamer-1.0''${_tmp:+:}$_tmp"; done; printf '%s' "$_tmp")'
done
'';
2016-04-24 05:39:30 -07:00
preFixup = ''
moveToOutput "share/bash-completion" "$dev"
'';
setupHook = ./setup-hook.sh;
2019-10-02 10:03:58 -07:00
meta = with lib ;{
description = "Open source multimedia framework";
homepage = "https://gstreamer.freedesktop.org";
license = licenses.lgpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ ttuegel matthewbauer ];
};
2013-12-23 07:36:37 -08:00
}