mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +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" ```
44 lines
1.0 KiB
Nix
44 lines
1.0 KiB
Nix
{ stdenv
|
|
, lib
|
|
, rkbin
|
|
, qemu
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "rkboot";
|
|
|
|
src = rkbin.src;
|
|
|
|
postPatch = ''
|
|
substituteInPlace RKBOOT/*.ini --replace 'PATH=' 'PATH=rkboot/'
|
|
'';
|
|
|
|
buildPhase = ''
|
|
mkdir rkboot
|
|
for i in $(ls ./RKBOOT/*.ini)
|
|
do
|
|
# The proprietary, statically linked binaries to perform boot_merge are
|
|
# x86_64 only. Though we use box64 to emulate if building on aarch64-linux
|
|
${lib.optionalString stdenv.hostPlatform.isAarch64 "${qemu}/bin/qemu-x86_64"} ./tools/boot_merger "$i" || true
|
|
done
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
if [ -z "$(ls -A rkboot)" ]; then
|
|
echo "Error: The 'rkboot' directory is empty."
|
|
exit 1
|
|
else
|
|
mv rkboot $out/bin
|
|
fi
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Rockchip proprietary SPL bootloader blobs";
|
|
homepage = "https://github.com/rockchip-linux/rkbin";
|
|
license = licenses.unfreeRedistributable;
|
|
maintainers = with maintainers; [ matthewcroughan ];
|
|
platforms = [ "x86_64-linux" "aarch64-linux" ];
|
|
};
|
|
}
|