Merge pull request #209010 from wegank/libticables2-darwin

libticables2: unbreak on aarch64-darwin
This commit is contained in:
Thiago Kenji Okada 2023-01-08 12:09:39 +00:00 committed by GitHub
commit ebdd60caf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ stdenv
, lib
, fetchurl
, fetchpatch
, pkg-config
, autoreconfHook
, glib
@ -15,6 +16,15 @@ stdenv.mkDerivation rec {
sha256 = "08j5di0cgix9vcpdv7b8xhxdjkk9zz7fqfnv3l4apk3jdr8vcvqc";
};
patches = [
(fetchpatch {
name = "add-support-for-aarch64-macos-target-triple.patch";
url = "https://github.com/debrouxl/tilibs/commit/ef41c51363b11521460f33e8c332db7b0a9ca085.patch";
stripLen = 2;
sha256 = "sha256-oTR1ACEZI0fjErpnFXTCnfLT1mo10Ypy0q0D8NOPNsM=";
})
];
nativeBuildInputs = [
autoreconfHook
pkg-config
@ -60,7 +70,5 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
maintainers = with maintainers; [ siraben luc65r ];
platforms = with platforms; linux ++ darwin;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
};
}