mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
Merge pull request #84461 from marsam/fix-libbluray-build
libbluray: fix build on darwin
This commit is contained in:
commit
55d2a340d4
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, pkgconfig, fontconfig, autoreconfHook
|
||||
{ stdenv, fetchurl, pkgconfig, fontconfig, autoreconfHook, DiskArbitration
|
||||
, withJava ? false, jdk ? null, ant ? null
|
||||
, withAACS ? false, libaacs ? null
|
||||
, withBDplus ? false, libbdplus ? null
|
||||
|
@ -36,6 +36,7 @@ stdenv.mkDerivation rec {
|
|||
++ optional withJava jdk
|
||||
++ optional withMetadata libxml2
|
||||
++ optional withFonts freetype
|
||||
++ optional stdenv.isDarwin DiskArbitration
|
||||
;
|
||||
|
||||
propagatedBuildInputs = optional withAACS libaacs;
|
||||
|
|
|
@ -12394,7 +12394,9 @@ in
|
|||
|
||||
libblocksruntime = callPackage ../development/libraries/libblocksruntime { };
|
||||
|
||||
libbluray = callPackage ../development/libraries/libbluray { };
|
||||
libbluray = callPackage ../development/libraries/libbluray {
|
||||
inherit (darwin.apple_sdk.frameworks) DiskArbitration;
|
||||
};
|
||||
|
||||
libbs2b = callPackage ../development/libraries/audio/libbs2b { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue