1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/catkin-setup-hook/default.nix

12 lines
184 B
Nix
Raw Normal View History

2019-03-21 00:23:14 -04:00
{ runCommand }:
distro:
runCommand "ros-setup-hook.sh" {
inherit distro;
} ''
cp ${./setup-hook.sh} setup-hook.sh
substituteAllInPlace setup-hook.sh
mv setup-hook.sh $out
''