update some jank
This commit is contained in:
parent
943564da29
commit
7944b0e5de
|
@ -9,6 +9,9 @@
|
|||
constructDrv = stdenv.mkDerivation;
|
||||
excludeDrvArgNames = [
|
||||
"dependencies"
|
||||
"tetheredInstallation"
|
||||
"doMainSetup"
|
||||
"buildDocs"
|
||||
];
|
||||
extendDrvArgs = finalAttrs:
|
||||
{
|
||||
|
|
|
@ -12,4 +12,6 @@
|
|||
|
||||
dependencies = packages;
|
||||
tetheredInstallation = true;
|
||||
|
||||
racketEnvOnly = true;
|
||||
}
|
||||
|
|
|
@ -132,7 +132,7 @@ EOF
|
|||
rm $out/bin/mzscheme # ????
|
||||
fi
|
||||
|
||||
if [ -f "nix-racket-env-only" ]; then
|
||||
if [ "$racketEnvOnly" == "1" ]; then
|
||||
echo Skipping raco pkg install
|
||||
else
|
||||
echo Running raco pkg install
|
||||
|
|
Loading…
Reference in New Issue