Merge pull request #29547 from obsidiansystems/cross-suffix
stdenv: Add back leading '-' in cross derivation name suffix
This commit is contained in:
commit
807d8cec97
@ -97,7 +97,7 @@ rec {
|
|||||||
{
|
{
|
||||||
name = name + lib.optionalString
|
name = name + lib.optionalString
|
||||||
(stdenv.hostPlatform != stdenv.buildPlatform)
|
(stdenv.hostPlatform != stdenv.buildPlatform)
|
||||||
stdenv.hostPlatform.config;
|
("-" + stdenv.hostPlatform.config);
|
||||||
builder = attrs.realBuilder or stdenv.shell;
|
builder = attrs.realBuilder or stdenv.shell;
|
||||||
args = attrs.args or ["-e" (attrs.builder or ./default-builder.sh)];
|
args = attrs.args or ["-e" (attrs.builder or ./default-builder.sh)];
|
||||||
inherit stdenv;
|
inherit stdenv;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user