shells/rust: init
This commit is contained in:
parent
cd71574b78
commit
6f96a98340
|
@ -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
20
shells/rust/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
mkShell,
|
||||
python3,
|
||||
pkg-config,
|
||||
cmake,
|
||||
ninja,
|
||||
curl,
|
||||
patchelf,
|
||||
}:
|
||||
|
||||
mkShell {
|
||||
packages = [
|
||||
python3
|
||||
pkg-config
|
||||
cmake
|
||||
ninja
|
||||
curl
|
||||
patchelf
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue