···66 # prevent infinite recursion for the default stdenv value
67 defaultStdenv = stdenv;
68 in
69- { stdenv ? defaultStdenv
70 # which stdenv to use, defaults to a stdenv with a C compiler, pkgs.stdenv
0071 , runLocal ? false
72- # whether to build this derivation locally instead of substituting
73 , derivationArgs ? {}
74- # extra arguments to pass to stdenv.mkDerivation
75- , name
76 # name of the resulting derivation
077 # TODO(@Artturin): enable strictDeps always
78 }: buildCommand:
79 stdenv.mkDerivation ({
···66 # prevent infinite recursion for the default stdenv value
67 defaultStdenv = stdenv;
68 in
69+ {
70 # which stdenv to use, defaults to a stdenv with a C compiler, pkgs.stdenv
71+ stdenv ? defaultStdenv
72+ # whether to build this derivation locally instead of substituting
73 , runLocal ? false
74+ # extra arguments to pass to stdenv.mkDerivation
75 , derivationArgs ? {}
0076 # name of the resulting derivation
77+ , name
78 # TODO(@Artturin): enable strictDeps always
79 }: buildCommand:
80 stdenv.mkDerivation ({