Merge pull request #153366 from helsinki-systems/fix/gnustep-base-utf8-bom

gnustep.base: fix issue with UTF-8 BOM
This commit is contained in:
ajs124 2022-01-03 21:42:11 +01:00 committed by GitHub
commit 2dedc1eaa4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,7 @@
, gsmakeDerivation
, cups
, fetchzip
, fetchpatch
, gmp, gnutls
, libffi, binutils-unwrapped
, libjpeg, libtiff, libpng, giflib
@ -33,6 +34,12 @@ gsmakeDerivation rec {
];
patches = [
./fixup-paths.patch
# https://github.com/gnustep/libs-base/issues/212 / https://www.sogo.nu/bugs/view.php?id=5416#c15585
(fetchpatch {
url = "https://github.com/gnustep/libs-base/commit/bd5f2909e6edc8012a0a6e44ea1402dfbe1353a4.patch";
revert = true;
sha256 = "02awigkbhqa60hfhqfh2wjsa960y3q6557qck1k2l231piz2xasa";
})
];
meta = {