nixpkgs/pkgs/development/compilers/mrustc/default.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
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-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

61 lines
1.4 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
zlib,
}:
let
version = "0.10.1";
tag = "v${version}";
rev = "b6754f574f8846eb842feba4ccbeeecb10bdfacc";
in
stdenv.mkDerivation rec {
pname = "mrustc";
inherit version;
# Always update minicargo.nix and bootstrap.nix in lockstep with this
src = fetchFromGitHub {
owner = "thepowersgang";
repo = "mrustc";
rev = tag;
hash = "sha256-sYnx5dUTaQbK4ugnSzAJwIUwZKPUhThmNA+WlY+LEWc=";
};
postPatch = ''
sed -i 's/\$(shell git show --pretty=%H -s)/${rev}/' Makefile
sed -i 's/\$(shell git symbolic-ref -q --short HEAD || git describe --tags --exact-match)/${tag}/' Makefile
sed -i 's/\$(shell git diff-index --quiet HEAD; echo $$?)/0/' Makefile
sed '1i#include <limits>' -i src/trans/codegen_c.cpp
'';
strictDeps = true;
buildInputs = [ zlib ];
enableParallelBuilding = true;
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp bin/mrustc $out/bin
runHook postInstall
'';
meta = with lib; {
description = "Mutabah's Rust Compiler";
mainProgram = "mrustc";
longDescription = ''
In-progress alternative rust compiler, written in C++.
Capable of building a fully-working copy of rustc,
but not yet suitable for everyday use.
'';
inherit (src.meta) homepage;
license = licenses.mit;
maintainers = with maintainers; [
progval
r-burns
];
platforms = [ "x86_64-linux" ];
};
}