Unverified Commit 611e3b11 authored by Robert Scott's avatar Robert Scott Committed by GitHub
Browse files

Merge pull request #313370 from teidesu/zhf/innoextract

innoextract: fixed darwin build
parents 13003e44 1e3397fd
Loading
Loading
Loading
Loading
+13 −4
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, cmake, makeWrapper
, boost, xz
, withGog ? false, unar ? null }:
{ lib
, stdenv
, fetchurl
, cmake
, makeWrapper
, boost
, xz
, libiconv
, withGog ? false
, unar ? null
}:

stdenv.mkDerivation rec {
  pname = "innoextract";
@@ -11,7 +19,8 @@ stdenv.mkDerivation rec {
    sha256 = "09l1z1nbl6ijqqwszdwch9mqr54qb7df0wp2sd77v17dq6gsci33";
  };

  buildInputs = [ xz boost ];
  buildInputs = [ xz boost ]
    ++ lib.optionals stdenv.isDarwin [ libiconv ];

  # Python is reported as missing during the build, however
  # including Python does not change the output.