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 # 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 71 , 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 77 # 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 ? {} 76 # name of the resulting derivation 77 + , name 78 # TODO(@Artturin): enable strictDeps always 79 }: buildCommand: 80 stdenv.mkDerivation ({