mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +00:00
14 lines
253 B
Bash
14 lines
253 B
Bash
|
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
|
||
|
|
||
|
wrapProgram $boot_bin \
|
||
|
--set JAVA_HOME "${jdk}" \
|
||
|
--prefix PATH ":" "${jdk}/bin"
|