summary refs log tree commit diff
path: root/pkgs/development/libraries/libbluray
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-04-06 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-04-06 04:20:00 -0500
commitbee7f216b5d9576b95b37ea9673e1acf1dfc5c91 (patch)
tree03f04b717277db48a09a710bd08e8e0ba81d38f7 /pkgs/development/libraries/libbluray
parentb2aa0bbf4627a02654e45c412d5669922d3601d6 (diff)
downloadnixpkgs-bee7f216b5d9576b95b37ea9673e1acf1dfc5c91.tar
nixpkgs-bee7f216b5d9576b95b37ea9673e1acf1dfc5c91.tar.gz
nixpkgs-bee7f216b5d9576b95b37ea9673e1acf1dfc5c91.tar.bz2
nixpkgs-bee7f216b5d9576b95b37ea9673e1acf1dfc5c91.tar.lz
nixpkgs-bee7f216b5d9576b95b37ea9673e1acf1dfc5c91.tar.xz
nixpkgs-bee7f216b5d9576b95b37ea9673e1acf1dfc5c91.tar.zst
nixpkgs-bee7f216b5d9576b95b37ea9673e1acf1dfc5c91.zip
libbluray: fix build on darwin
Diffstat (limited to 'pkgs/development/libraries/libbluray')
-rw-r--r--pkgs/development/libraries/libbluray/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libbluray/default.nix b/pkgs/development/libraries/libbluray/default.nix
index b66e3fd28e7..7bfd9a8a2d0 100644
--- a/pkgs/development/libraries/libbluray/default.nix
+++ b/pkgs/development/libraries/libbluray/default.nix
@@ -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;