about summary refs log tree commit diff
path: root/pkgs/development/interpreters/octave/wrap-octave.nix
blob: 1959ba6c49251becf9c73cd1b40ca2322109bb1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib
, octave
, makeSetupHook
, makeWrapper
}:

# Defined in trivial-builders
# Imported as wrapOctave in octave/default.nix and passed to octave's buildEnv
# as nativeBuildInput
# Each of the substitutions is available in the wrap.sh script as @thingSubstituted@
makeSetupHook {
  name = "${octave.name}-pkgs-setup-hook";
  propagatedBuildInputs = [ makeWrapper ];
  substitutions.executable = octave.interpreter;
  substitutions.octave = octave;
} ./wrap.sh