Merge pull request #206815 from SuperSandro2000/misc-cleanup

build-support: order comments above corresponding line

authored by

figsoda and committed by
GitHub
424480f0 813a0ef8

+5 -4
+5 -4
pkgs/build-support/trivial-builders.nix
··· 66 66 # prevent infinite recursion for the default stdenv value 67 67 defaultStdenv = stdenv; 68 68 in 69 - { stdenv ? defaultStdenv 69 + { 70 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 71 73 , runLocal ? false 72 - # whether to build this derivation locally instead of substituting 74 + # extra arguments to pass to stdenv.mkDerivation 73 75 , derivationArgs ? {} 74 - # extra arguments to pass to stdenv.mkDerivation 75 - , name 76 76 # name of the resulting derivation 77 + , name 77 78 # TODO(@Artturin): enable strictDeps always 78 79 }: buildCommand: 79 80 stdenv.mkDerivation ({