0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 22:20:30 +03:00
nixpkgs/init/builder.sh

15 lines
223 B
Bash
Raw Normal View History

#! /bin/sh -e
. $stdenv/setup
mkdir $out
mkdir $out/bin
sed \
-e "s^@bash\@^$bash^g" \
-e "s^@coreutils\@^$coreutils^g" \
-e "s^@findutils\@^$findutils^g" \
< $src > $out/bin/init
chmod +x $out/bin/init