chore: tidy nix expressions

This commit is contained in:
2026-08-19 20:59:30 +02:00
parent 7e5dae50e1
commit 9edf42cf82
6 changed files with 154 additions and 87 deletions
+16
View File
@@ -0,0 +1,16 @@
{
makeRustPlatform,
cargo,
rustc,
pkgs,
...
}: let
p = pkgs;
in rec {
rustPlatform = makeRustPlatform {
inherit cargo rustc;
};
pkgs = p.extend (_: _: {
inherit rustPlatform;
});
}