Skip to content

Commit

Permalink
xorriso: fix build on Darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
copumpkin committed Oct 4, 2017
1 parent acedcc9 commit d9091f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/tools/cd-dvd/xorriso/default.nix
@@ -1,4 +1,4 @@
{ fetchurl, stdenv, libcdio, zlib, bzip2, readline, acl, attr }:
{ fetchurl, stdenv, libcdio, zlib, bzip2, readline, acl, attr, libiconv }:

stdenv.mkDerivation rec {
name = "xorriso-1.4.8";
Expand All @@ -10,8 +10,8 @@ stdenv.mkDerivation rec {

doCheck = true;

buildInputs = [ libcdio zlib bzip2 readline attr ]
++ stdenv.lib.optional stdenv.isLinux acl;
buildInputs = [ libcdio zlib bzip2 readline libiconv ]
++ stdenv.lib.optionals stdenv.isLinux [ acl attr ];

meta = with stdenv.lib; {
description = "ISO 9660 Rock Ridge file system manipulator";
Expand Down

0 comments on commit d9091f8

Please sign in to comment.