mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 16:34:27 +00:00
15 lines
223 B
Bash
15 lines
223 B
Bash
|
#! /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
|