mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-14 19:48:39 +03:00
11 lines
243 B
Nix
11 lines
243 B
Nix
{ stdenv, python, cmake }:
|
|
{ nativeBuildInputs ? []
|
|
, passthru ? {}
|
|
, ...
|
|
}@args: stdenv.mkDerivation (args // {
|
|
nativeBuildInputs = [ python.pkgs.wrapPython ] ++ nativeBuildInputs;
|
|
|
|
passthru = passthru // {
|
|
rosPackage = true;
|
|
};
|
|
})
|