Unverified Commit 5548bca3 authored by Michael Daniels's avatar Michael Daniels Committed by GitHub
Browse files

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

parents db6cb083 ee82e39e
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -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;

    env = attrs.env or { } // {
      OCTAVE_HISTFILE = "/dev/null";
    };

    inherit src;