mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-13 19:24:50 +03:00
noetic: resource-retriever: add distutils dependency
This commit is contained in:
parent
f5d1f80b63
commit
6892f13ec1
1 changed files with 7 additions and 0 deletions
|
@ -117,6 +117,13 @@ rosSelf: rosSuper: with rosSelf.lib; {
|
||||||
sha256 = "sha256-IBlmph3IJvGxh5okozF6HskhSpGMjrA1vi8ww+nPvcs=";
|
sha256 = "sha256-IBlmph3IJvGxh5okozF6HskhSpGMjrA1vi8ww+nPvcs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
resource-retriever = rosSuper.resource-retriever.overrideAttrs({
|
||||||
|
nativeBuildInputs ? [], ...
|
||||||
|
}: {
|
||||||
|
# distutils was removed from standard library in Python 3.12
|
||||||
|
nativeBuildInputs = nativeBuildInputs ++ [ rosSelf.python3Packages.distutils ];
|
||||||
|
});
|
||||||
|
|
||||||
rosconsole = rosSuper.rosconsole.overrideAttrs ({
|
rosconsole = rosSuper.rosconsole.overrideAttrs ({
|
||||||
patches ? [], ...
|
patches ? [], ...
|
||||||
}: {
|
}: {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue