fped: fix cross build (#370322)

This commit is contained in:
Arne Keller
2025-03-18 18:23:16 +01:00
committed by GitHub
+6
View File
@@ -21,6 +21,11 @@ stdenv.mkDerivation {
sha256 = "0xv364a00zwxhd9kg1z9sch5y0cxnrhk546asspyb9bh58sdzfy7";
};
postPatch = ''
substituteInPlace Makefile \
--replace-fail 'pkg-config' '${stdenv.cc.targetPrefix}pkg-config'
'';
# Workaround build failure on -fno-common toolchains:
# ld: postscript.o:postscript.h:29: multiple definition of
# `postscript_params'; fped.o:postscript.h:29: first defined here
@@ -43,6 +48,7 @@ stdenv.mkDerivation {
];
buildInputs = [
flex
gtk2
];