mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
12 lines
184 B
Nix
12 lines
184 B
Nix
![]() |
{ 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
|
||
|
''
|