octavePackages.buildOctavePackage: move OCTAVE_HISTFILE into env (#502541)

This commit is contained in:
Michael Daniels
2026-03-26 22:25:23 +00:00
committed by GitHub
@@ -81,6 +81,7 @@ let
"nativeBuildInputs"
"nativeOctavePkgTestInputs"
"passthru"
"env"
];
in
stdenv.mkDerivation (
@@ -96,7 +97,9 @@ stdenv.mkDerivation (
# packages are installed into octave during the environment building phase.
isOctavePackage = true;
OCTAVE_HISTFILE = "/dev/null";
env = attrs.env or { } // {
OCTAVE_HISTFILE = "/dev/null";
};
inherit src;