mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
Cleanup buildRosPackage
This commit is contained in:
parent
ccdb61b2a2
commit
36c35d9b73
1 changed files with 1 additions and 6 deletions
|
@ -1,13 +1,8 @@
|
||||||
{ stdenv, python, cmake }:
|
{ stdenv, python, cmake }:
|
||||||
{ postInstall ? ""
|
{ nativeBuildInputs ? []
|
||||||
, postFixup ? ""
|
|
||||||
, buildInputs ? []
|
|
||||||
, nativeBuildInputs ? []
|
|
||||||
, propagatedNativeBuildInputs ? []
|
, propagatedNativeBuildInputs ? []
|
||||||
, passthru ? {}
|
|
||||||
, ...
|
, ...
|
||||||
}@args: stdenv.mkDerivation (args // {
|
}@args: stdenv.mkDerivation (args // {
|
||||||
|
|
||||||
nativeBuildInputs = [ python.pkgs.wrapPython ] ++ nativeBuildInputs;
|
nativeBuildInputs = [ python.pkgs.wrapPython ] ++ nativeBuildInputs;
|
||||||
propagatedNativeBuildInputs = [ cmake ] ++ propagatedNativeBuildInputs;
|
propagatedNativeBuildInputs = [ cmake ] ++ propagatedNativeBuildInputs;
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue