gstreamer: needs extra build inputs
Cross needs some extra native tools: - glib - wayland - orc - glib is needed in nativeBuildInputs Also: - bash-completion needs to be available for PKG_CONFIG_PATH
This commit is contained in:
parent
de14f0c6e1
commit
5198179adc
@ -37,6 +37,7 @@
|
||||
, enableGl ? (enableX11 || enableWayland || enableCocoa)
|
||||
, enableCdparanoia ? (!stdenv.isDarwin)
|
||||
, cdparanoia
|
||||
, glib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -60,13 +61,15 @@ stdenv.mkDerivation rec {
|
||||
pkgconfig
|
||||
python3
|
||||
gettext
|
||||
orc
|
||||
glib
|
||||
gobject-introspection
|
||||
|
||||
# docs
|
||||
gtk-doc
|
||||
docbook_xsl
|
||||
docbook_xml_dtd_43
|
||||
];
|
||||
] ++ lib.optional enableWayland wayland;
|
||||
|
||||
buildInputs = [
|
||||
orc
|
||||
|
@ -48,6 +48,7 @@ stdenv.mkDerivation rec {
|
||||
flex
|
||||
python3
|
||||
makeWrapper
|
||||
glib
|
||||
gobject-introspection
|
||||
bash-completion
|
||||
|
||||
@ -57,7 +58,9 @@ stdenv.mkDerivation rec {
|
||||
docbook_xml_dtd_43
|
||||
];
|
||||
|
||||
buildInputs = lib.optionals stdenv.isLinux [
|
||||
buildInputs = [
|
||||
bash-completion
|
||||
] ++ lib.optionals stdenv.isLinux [
|
||||
libcap
|
||||
libunwind
|
||||
elfutils
|
||||
|
Loading…
Reference in New Issue
Block a user