shells/rust: init

This commit is contained in:
Artemis Tosini 2024-08-27 18:23:26 +00:00
parent cd71574b78
commit 6f96a98340
Signed by: artemist
GPG key ID: EE5227935FE3FF18
2 changed files with 21 additions and 0 deletions

View file

@ -40,6 +40,7 @@
devShells = forAllSystems (pkgs: {
armTrustedFirmware = pkgs.callPackage ./shells/armTrustedFirmware { };
plotter = pkgs.callPackage ./shells/plotter { };
rust = pkgs.callPackage ./shells/rust { };
ryujinx = pkgs.callPackage ./shells/ryujinx { };
uboot = pkgs.callPackage ./shells/uboot { };
zephyr = pkgs.callPackage ./shells/zephyr { };

20
shells/rust/default.nix Normal file
View file

@ -0,0 +1,20 @@
{
mkShell,
python3,
pkg-config,
cmake,
ninja,
curl,
patchelf,
}:
mkShell {
packages = [
python3
pkg-config
cmake
ninja
curl
patchelf
];
}