mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
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
|
||||
(stdenv.hostPlatform != stdenv.buildPlatform)
|
||||
stdenv.hostPlatform.config;
|
||||
("-" + stdenv.hostPlatform.config);
|
||||
builder = attrs.realBuilder or stdenv.shell;
|
||||
args = attrs.args or ["-e" (attrs.builder or ./default-builder.sh)];
|
||||
inherit stdenv;
|
||||
|
Loading…
Reference in New Issue
Block a user