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