mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
c01f509e44
if theres a source $stdenv then this is needed for structuredAttrs
15 lines
299 B
Bash
15 lines
299 B
Bash
if [ -e .attrs.sh ]; then source .attrs.sh; fi
|
|
source $stdenv/setup
|
|
|
|
boot_bin=$out/bin/boot
|
|
|
|
mkdir -pv $(dirname $boot_bin)
|
|
cp -v $src $boot_bin
|
|
chmod -v 755 $boot_bin
|
|
|
|
patchShebangs $boot_bin
|
|
|
|
sed -i \
|
|
-e "s;\${BOOT_JAVA_COMMAND:-java};\${BOOT_JAVA_COMMAND:-${jdk}/bin/java};g" \
|
|
$boot_bin
|