1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00

Cleanup buildRosPackage

This commit is contained in:
Ben Wolsieffer 2019-04-08 17:03:31 -04:00
parent ccdb61b2a2
commit 36c35d9b73

View file

@ -1,13 +1,8 @@
{ stdenv, python, cmake }:
{ postInstall ? ""
, postFixup ? ""
, buildInputs ? []
, nativeBuildInputs ? []
{ nativeBuildInputs ? []
, propagatedNativeBuildInputs ? []
, passthru ? {}
, ...
}@args: stdenv.mkDerivation (args // {
nativeBuildInputs = [ python.pkgs.wrapPython ] ++ nativeBuildInputs;
propagatedNativeBuildInputs = [ cmake ] ++ propagatedNativeBuildInputs;
})