Skip to content

Commit

Permalink
octave-modules: simplify buildOctaveLibrary with inherits
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlJoad committed Jan 6, 2021
1 parent f64fc7e commit dd18a6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/interpreters/octave/mk-octave-derivation.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ let
self = stdenv.mkDerivation {
packageName = "${fullLibName}";
name = "${namePrefix}-${fullLibName}";
src = src;
inherit src;

OCTAVE_HISTFILE = "/dev/null";

Expand All @@ -49,7 +49,7 @@ let
]
++ nativeBuildInputs;

buildInputs = buildInputs;
inherit buildInputs;

propagatedBuildInputs = propagatedBuildInputs;

Expand Down

0 comments on commit dd18a6d

Please sign in to comment.