Merge pull request #131812 from prusnak/gcab-unix

gcab/msitools: enable build on darwin
This commit is contained in:
Pavol Rusnak 2021-07-28 15:38:04 +02:00 committed by GitHub
commit 4bfc320c9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -78,6 +78,6 @@ stdenv.mkDerivation rec {
homepage = "https://gitlab.gnome.org/GNOME/gcab"; homepage = "https://gitlab.gnome.org/GNOME/gcab";
license = licenses.lgpl21Plus; license = licenses.lgpl21Plus;
maintainers = teams.gnome.members; maintainers = teams.gnome.members;
platforms = platforms.linux; platforms = platforms.unix;
}; };
} }

View file

@ -59,7 +59,8 @@ stdenv.mkDerivation rec {
bzip2 bzip2
]; ];
doCheck = true; # WiX tests fail on darwin
doCheck = !stdenv.isDarwin;
postPatch = '' postPatch = ''
patchShebangs subprojects/bats-core/{bin,libexec} patchShebangs subprojects/bats-core/{bin,libexec}