Skip to content

Commit

Permalink
Merge #36686: darling-dmg: fix build with gcc7
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Mar 12, 2018
2 parents 8a74c75 + 468c5f4 commit 1d968d1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkgs/tools/filesystems/darling-dmg/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, fuse, zlib, bzip2, openssl, libxml2, icu } :
{ stdenv, fetchFromGitHub, fetchpatch, cmake, fuse, zlib, bzip2, openssl, libxml2, icu } :

stdenv.mkDerivation rec {
name = "darling-dmg-${version}";
Expand All @@ -11,6 +11,13 @@ stdenv.mkDerivation rec {
sha256 = "0x285p16zfnp0p6injw1frc8krif748sfgxhdd7gb75kz0dfbkrk";
};

patches = [
(fetchpatch {
url = "https://github.com/darlinghq/darling-dmg/commit/cbb0092264b5c5cf3e92d6c2de23f02d859ebf44.patch";
sha256 = "05fhgn5c09f1rva6bvbq16nhlkblrhscbf69k04ajwdh7y98sw39";
})
];

buildInputs = [ cmake fuse openssl zlib bzip2 libxml2 icu ];

meta = {
Expand Down

0 comments on commit 1d968d1

Please sign in to comment.