nixpkgs/pkgs/development/compilers/mrustc/minicargo.nix
Val Lorentz fd3641ec26 mrustc: 0.9 -> 0.10
And switch from Rust 1.29 to 1.54, as this is the top version
supported by mrustc
2023-04-06 11:26:26 +02:00

40 lines
1,002 B
Nix

{ lib, stdenv
, makeWrapper
, mrustc
}:
stdenv.mkDerivation rec {
pname = "mrustc-minicargo";
inherit (mrustc) src version;
strictDeps = true;
nativeBuildInputs = [ makeWrapper ];
enableParallelBuilding = true;
makefile = "minicargo.mk";
makeFlags = [ "bin/minicargo" ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp bin/minicargo $out/bin
# without it, minicargo defaults to "<minicargo_path>/../bin/mrustc"
wrapProgram "$out/bin/minicargo" --set MRUSTC_PATH ${mrustc}/bin/mrustc
runHook postInstall
'';
meta = with lib; {
description = "A minimalist builder for Rust";
longDescription = ''
A minimalist builder for Rust, similar to Cargo but written in C++.
Designed to work with mrustc to build Rust projects
(like the Rust compiler itself).
'';
inherit (src.meta) homepage;
license = licenses.mit;
maintainers = with maintainers; [ progval r-burns ];
platforms = [ "x86_64-linux" ];
};
}