mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
57 lines
1.6 KiB
Nix
57 lines
1.6 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
inherit (lib) optionalString mkOption types mkIf mkDefault;
|
|
|
|
cfg = config.environment.stub-ld;
|
|
|
|
message = ''
|
|
NixOS cannot run dynamically linked executables intended for generic
|
|
linux environments out of the box. For more information, see:
|
|
https://nix.dev/permalink/stub-ld
|
|
'';
|
|
|
|
stub-ld-for = pkgsArg: messageArg: pkgsArg.pkgsStatic.runCommandCC "stub-ld" {
|
|
nativeBuildInputs = [ pkgsArg.unixtools.xxd ];
|
|
inherit messageArg;
|
|
} ''
|
|
printf "%s" "$messageArg" | xxd -i -n message >main.c
|
|
cat <<EOF >>main.c
|
|
#include <stdio.h>
|
|
int main(int argc, char * argv[]) {
|
|
fprintf(stderr, "Could not start dynamically linked executable: %s\n", argv[0]);
|
|
fwrite(message, sizeof(unsigned char), message_len, stderr);
|
|
return 127; // matches behavior of bash and zsh without a loader. fish uses 139
|
|
}
|
|
EOF
|
|
$CC -Os main.c -o $out
|
|
'';
|
|
|
|
pkgs32 = pkgs.pkgsi686Linux;
|
|
|
|
stub-ld = stub-ld-for pkgs message;
|
|
stub-ld32 = stub-ld-for pkgs32 message;
|
|
in {
|
|
options = {
|
|
environment.stub-ld = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
example = false;
|
|
description = ''
|
|
Install a stub ELF loader to print an informative error message
|
|
in the event that a user attempts to run an ELF binary not
|
|
compiled for NixOS.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.ldso = mkDefault stub-ld;
|
|
environment.ldso32 = mkIf pkgs.stdenv.hostPlatform.isx86_64 (mkDefault stub-ld32);
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ tejing ];
|
|
}
|