12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# TODO: maybe make this more generic? IIRC I couldn't use the
# patch-everything whatever, for some reason. It also probably should be in
# an earlier build step.
buildPhase = ''
substituteInPlace global/build-id.sh --replace "/usr/bin/env bash" "${stdenv.shell}"
substituteInPlace global/build-manpage.sh --replace "/usr/bin/env bash" "${stdenv.shell}"
env os=lin arch=x86 bits=64 to=$prefix debug=yes \
bash build.sh
'';
# No proper install yet...
dontInstall = true;
# Not sure if these work or are needed, but better safe than sorry, here.
|
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# TODO: maybe make this more generic? IIRC I couldn't use the
# patch-everything whatever, for some reason. It also probably should be in
# an earlier build step.
buildPhase = ''
substituteInPlace global/build-id.sh --replace "/usr/bin/env bash" "${stdenv.shell}"
substituteInPlace global/build-manpage.sh --replace "/usr/bin/env bash" "${stdenv.shell}"
env os=lin arch=x86 bits=64 to=$prefix debug=yes doc_pdf=false \
bash build.sh
'';
# No proper install yet...
dontInstall = true;
# Not sure if these work or are needed, but better safe than sorry, here.
|