cross: graphicsmagick: remove reference to build coreutils

This commit is contained in:
Colin 2023-10-12 01:11:27 +00:00
parent a4b54cd9c1
commit b7d90c3b6d
2 changed files with 13 additions and 0 deletions

View File

@ -31,6 +31,11 @@ in [
hash = "sha256-FDY/OLh7bNRixEuPlrIeyW/kJYNPnelLsplfKCsjHKQ=";
})
# (fetchpatch' {
# title = "graphicsmagick: 1.3.39 -> 1.3.42";
# prUrl = "https://github.com/NixOS/nixpkgs/pull/218163";
# hash = "sha256-E1Xfi7BRpAvqAzfChjWRG1Ar5dsFMm/yu7NXnDc95PM=";
# })
# (fetchpatch' {
# # disabled, at least until the PR is updated to use `pkg-config` instead of `pkgconfig`.
# # the latter is an alias, which breaks nix-index
# title = "phog: init at 0.1.3";

View File

@ -905,6 +905,14 @@ in {
# buildPackages.gtk-doc = final.gtk-doc;
# });
graphicsmagick = prev.graphicsmagick.overrideAttrs (upstream: {
# by default the build holds onto a reference to build `mv`
# N.B.: `imagemagick` package has this identical issue
configureFlags = upstream.configureFlags ++ [
"MVDelegate=${final.coreutils}/bin/mv"
];
});
# fixes: "make: gcc: No such file or directory"
# java-service-wrapper = useEmulatedStdenv prev.java-service-wrapper;