mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
75 lines
2.0 KiB
Nix
75 lines
2.0 KiB
Nix
{
|
|
stdenv,
|
|
buildPackages,
|
|
callPackage,
|
|
}:
|
|
|
|
let
|
|
chezArch =
|
|
if stdenv.hostPlatform.isAarch then
|
|
"arm${toString stdenv.hostPlatform.parsed.cpu.bits}"
|
|
else if stdenv.hostPlatform.isx86_32 then
|
|
"i3"
|
|
else if stdenv.hostPlatform.isx86_64 then
|
|
"a6"
|
|
else if stdenv.hostPlatform.isPower then
|
|
"ppc${toString stdenv.hostPlatform.parsed.cpu.bits}"
|
|
else
|
|
throw "Add ${stdenv.hostPlatform.parsed.cpu.arch} to chezArch to enable building chez-racket";
|
|
|
|
chezOs =
|
|
if stdenv.hostPlatform.isDarwin then
|
|
"osx"
|
|
else if stdenv.hostPlatform.isFreeBSD then
|
|
"fb"
|
|
else if stdenv.hostPlatform.isLinux then
|
|
"le"
|
|
else if stdenv.hostPlatform.isNetBSD then
|
|
"nb"
|
|
else if stdenv.hostPlatform.isOpenBSD then
|
|
"ob"
|
|
else
|
|
throw "Add ${stdenv.hostPlatform.uname.system} to chezOs to enable building chez-racket";
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
chezSystem = "t${chezArch}${chezOs}";
|
|
# Chez Scheme uses an ad-hoc `configure`, hence we don't use the usual
|
|
# stdenv abstractions.
|
|
forBoot = {
|
|
pname = "chez-scheme-racket-boot";
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
./configure --pb ZLIB=$ZLIB LZ4=$LZ4
|
|
runHook postConfigure
|
|
'';
|
|
makeFlags = [ "${chezSystem}.bootquick" ];
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out
|
|
pushd boot
|
|
mv $(ls -1 | grep -v "^pb$") -t $out
|
|
popd
|
|
runHook postInstall
|
|
'';
|
|
};
|
|
boot = buildPackages.callPackage (import ./shared.nix forBoot) { };
|
|
forFinal = {
|
|
pname = "chez-scheme-racket";
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
cp -r ${boot}/* -t ./boot
|
|
./configure -m=${chezSystem} --installprefix=$out --installman=$out/share/man ZLIB=$ZLIB LZ4=$LZ4
|
|
runHook postConfigure
|
|
'';
|
|
preBuild = ''
|
|
pushd ${chezSystem}/c
|
|
'';
|
|
postBuild = ''
|
|
popd
|
|
'';
|
|
setupHook = ./setup-hook.sh;
|
|
};
|
|
final = callPackage (import ./shared.nix forFinal) { };
|
|
in
|
|
final
|