Merge branch 'master' into staging-next
Hydra nixpkgs: ?compare=1526638
This commit is contained in:
@@ -75,7 +75,8 @@ stdenv.mkDerivation rec {
|
||||
++ lib.optional (!enableCdparanoia) "-Dcdparanoia=disabled"
|
||||
;
|
||||
|
||||
buildInputs = [ orc libtheora libintl libopus isocodes libjpeg libvisual tremor ]
|
||||
buildInputs = [ orc libtheora libintl libopus isocodes libjpeg tremor ]
|
||||
++ lib.optional (!stdenv.isDarwin) libvisual
|
||||
++ lib.optional enableAlsa alsaLib
|
||||
++ lib.optionals enableX11 [ libXv pango ]
|
||||
++ lib.optional enableWayland wayland
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
, docbook_xsl, docbook_xml_dtd_412
|
||||
, gtk-doc
|
||||
, lib
|
||||
, CoreServices
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -43,7 +44,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs =
|
||||
lib.optionals stdenv.isLinux [ libcap libunwind elfutils ]
|
||||
++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.CoreServices;
|
||||
++ lib.optional stdenv.isDarwin CoreServices;
|
||||
|
||||
propagatedBuildInputs = [ glib ];
|
||||
|
||||
@@ -52,7 +53,9 @@ stdenv.mkDerivation rec {
|
||||
"-Dauto_features=enabled"
|
||||
"-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
|
||||
];
|
||||
]
|
||||
# darwin.libunwind doesn't have pkgconfig definitions so meson doesn't detect it.
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [ "-Dlibunwind=disabled" "-Dlibdw=disabled" ];
|
||||
|
||||
postInstall = ''
|
||||
for prog in "$dev/bin/"*; do
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{ callPackage }:
|
||||
{ callPackage, CoreServices }:
|
||||
|
||||
rec {
|
||||
gstreamer = callPackage ./core { };
|
||||
gstreamer = callPackage ./core { inherit CoreServices; };
|
||||
|
||||
gstreamermm = callPackage ./gstreamermm { };
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ fetchurl, fetchpatch, stdenv, autoreconfHook
|
||||
, perl, bison2, flex, pkgconfig, glib, libxml2, libintl
|
||||
, perl, bison2, flex, pkgconfig, glib, libxml2, libintl, libunwind
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook flex perl pkgconfig libintl bison2 glib ];
|
||||
buildInputs = stdenv.lib.optional stdenv.isDarwin libunwind;
|
||||
propagatedBuildInputs = [ glib libxml2 ];
|
||||
|
||||
patches = [
|
||||
|
||||
@@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
|
||||
description = "An abstraction library for audio visualisations";
|
||||
homepage = https://sourceforge.net/projects/libvisual/;
|
||||
license = stdenv.lib.licenses.lgpl21Plus;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user