mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
11 lines
184 B
Nix
11 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
|
|
''
|