map-viewer: replace pkgconfig with pkg-config

This commit is contained in:
Ben Wolsieffer 2022-11-05 19:42:33 -04:00
parent 06bca349c0
commit 59a8f59666
2 changed files with 6 additions and 6 deletions

View file

@ -124,12 +124,6 @@ let
'';
});
map-server = rosSuper.map-server.overrideAttrs ({
nativeBuildInputs ? [], ...
}: {
nativeBuildInputs = nativeBuildInputs ++ [ self.pkgconfig ];
});
mapviz = rosSuper.mapviz.overrideAttrs ({
nativeBuildInputs ? [],
postFixup ? "", ...

View file

@ -45,5 +45,11 @@ rosSelf: rosSuper: with rosSelf.lib; {
sha256 = "0nryr4hg3lha1aaz35wbqr42lb6l8alfcy6slj2yn2dgb5syrmn2";
};
map-server = rosSuper.map-server.overrideAttrs ({
nativeBuildInputs ? [], ...
}: {
nativeBuildInputs = nativeBuildInputs ++ [ self.pkg-config ];
});
roscpp = patchBoostSignals rosSuper.roscpp;
}