Merge pull request #87760 from emilazy/mark-freeimage-broken-on-aarch64

freeimage: mark as broken on aarch64
This commit is contained in:
Lassulus 2020-06-18 19:00:36 +02:00 committed by GitHub
commit 647cb38da1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,8 @@
{ lib, stdenv, fetchurl, unzip, darwin }:
# TODO: consider unvendoring various dependencies (libpng, libjpeg,
# libwebp, zlib, ...)
stdenv.mkDerivation {
name = "freeimage-3.18.0";
@ -50,5 +53,7 @@ stdenv.mkDerivation {
license = "GPL";
maintainers = with lib.maintainers; [viric];
platforms = with lib.platforms; unix;
# see https://github.com/NixOS/nixpkgs/issues/77653
broken = stdenv.isAarch64;
};
}