forked from mirrors/nixpkgs
build-support: order comments above corresponding line
This commit is contained in:
parent
76672661b9
commit
b33ee831d3
|
@ -66,14 +66,15 @@ rec {
|
|||
# prevent infinite recursion for the default stdenv value
|
||||
defaultStdenv = stdenv;
|
||||
in
|
||||
{ stdenv ? defaultStdenv
|
||||
{
|
||||
# which stdenv to use, defaults to a stdenv with a C compiler, pkgs.stdenv
|
||||
, runLocal ? false
|
||||
stdenv ? defaultStdenv
|
||||
# whether to build this derivation locally instead of substituting
|
||||
, derivationArgs ? {}
|
||||
, runLocal ? false
|
||||
# extra arguments to pass to stdenv.mkDerivation
|
||||
, name
|
||||
, derivationArgs ? {}
|
||||
# name of the resulting derivation
|
||||
, name
|
||||
# TODO(@Artturin): enable strictDeps always
|
||||
}: buildCommand:
|
||||
stdenv.mkDerivation ({
|
||||
|
|
Loading…
Reference in a new issue