mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-28 15:54:32 +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
81 lines
2.0 KiB
Nix
81 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
curl,
|
|
tzdata,
|
|
autoPatchelfHook,
|
|
fixDarwinDylibNames,
|
|
libxml2,
|
|
}:
|
|
|
|
let
|
|
inherit (stdenv) hostPlatform;
|
|
OS = if hostPlatform.isDarwin then "osx" else hostPlatform.parsed.kernel.name;
|
|
ARCH =
|
|
if hostPlatform.isDarwin && hostPlatform.isAarch64 then "arm64" else hostPlatform.parsed.cpu.name;
|
|
version = "1.30.0";
|
|
hashes = {
|
|
# Get these from `nix store prefetch-file https://github.com/ldc-developers/ldc/releases/download/v1.19.0/ldc2-1.19.0-osx-x86_64.tar.xz` etc..
|
|
osx-x86_64 = "sha256-AAWZvxuZC82xvrW6fpYm783TY+H8k3DvqE94ZF1yjmk=";
|
|
linux-x86_64 = "sha256-V4TUzEfQhFrwiX07dHOgjdAoGkzausCkhnQIQNAU/eE=";
|
|
linux-aarch64 = "sha256-kTeglub75iv/jWWNPCn15aCGAbmck0RQl6L7bFOUu7Y=";
|
|
osx-arm64 = "sha256-Nb/owBdIeroB9jLMDvwjo8bvsTC9vFyJPLMTOMsSAd4=";
|
|
};
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "ldc-bootstrap";
|
|
inherit version;
|
|
|
|
src = fetchurl rec {
|
|
name = "ldc2-${version}-${OS}-${ARCH}.tar.xz";
|
|
url = "https://github.com/ldc-developers/ldc/releases/download/v${version}/${name}";
|
|
hash = hashes."${OS}-${ARCH}" or (throw "missing bootstrap hash for ${OS}-${ARCH}");
|
|
};
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
nativeBuildInputs =
|
|
lib.optionals hostPlatform.isLinux [
|
|
autoPatchelfHook
|
|
]
|
|
++ lib.optional hostPlatform.isDarwin fixDarwinDylibNames;
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
|
|
libxml2
|
|
stdenv.cc.cc
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
curl
|
|
tzdata
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
|
|
mv bin etc import lib LICENSE README $out/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "LLVM-based D Compiler";
|
|
homepage = "https://github.com/ldc-developers/ldc";
|
|
# from https://github.com/ldc-developers/ldc/blob/master/LICENSE
|
|
license = with licenses; [
|
|
bsd3
|
|
boost
|
|
mit
|
|
ncsa
|
|
gpl2Plus
|
|
];
|
|
maintainers = with maintainers; [ lionello ];
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"x86_64-darwin"
|
|
"aarch64-linux"
|
|
"aarch64-darwin"
|
|
];
|
|
};
|
|
}
|