mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 10:44:50 +03:00
13 lines
352 B
Nix
13 lines
352 B
Nix
{ stdenv, python, cmake }:
|
|
{ postInstall ? ""
|
|
, postFixup ? ""
|
|
, buildInputs ? []
|
|
, nativeBuildInputs ? []
|
|
, propagatedNativeBuildInputs ? []
|
|
, passthru ? {}
|
|
, ...
|
|
}@args: stdenv.mkDerivation (args // {
|
|
|
|
nativeBuildInputs = [ python.pkgs.wrapPython ] ++ nativeBuildInputs;
|
|
propagatedNativeBuildInputs = [ cmake ] ++ propagatedNativeBuildInputs;
|
|
})
|