Compare commits

..

No commits in common. "f80d4b05959c9db6184fef4de2cb99622f6862c4" and "cd71574b78db9f3c0b68e3e15ce971507220b7ae" have entirely different histories.

3 changed files with 3 additions and 24 deletions

View file

@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1724395761,
"narHash": "sha256-zRkDV/nbrnp3Y8oCADf5ETl1sDrdmAW6/bBVJ8EbIdQ=",
"lastModified": 1720368505,
"narHash": "sha256-5r0pInVo5d6Enti0YwUSQK4TebITypB42bWy5su3MrQ=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "ae815cee91b417be55d43781eb4b73ae1ecc396c",
"rev": "ab82a9612aa45284d4adf69ee81871a389669a9e",
"type": "github"
},
"original": {

View file

@ -40,7 +40,6 @@
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 { };

View file

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