···6666 # prevent infinite recursion for the default stdenv value
6767 defaultStdenv = stdenv;
6868 in
6969- { stdenv ? defaultStdenv
6969+ {
7070 # which stdenv to use, defaults to a stdenv with a C compiler, pkgs.stdenv
7171+ stdenv ? defaultStdenv
7272+ # whether to build this derivation locally instead of substituting
7173 , runLocal ? false
7272- # whether to build this derivation locally instead of substituting
7474+ # extra arguments to pass to stdenv.mkDerivation
7375 , derivationArgs ? {}
7474- # extra arguments to pass to stdenv.mkDerivation
7575- , name
7676 # name of the resulting derivation
7777+ , name
7778 # TODO(@Artturin): enable strictDeps always
7879 }: buildCommand:
7980 stdenv.mkDerivation ({