This commit is contained in:
Robin Appelman 2025-06-02 21:05:00 +02:00
commit 4722ce296e
4 changed files with 41 additions and 42 deletions

View file

@ -4,22 +4,19 @@
nixpkgs.url = "nixpkgs/release-22.11";
};
outputs =
{ self
, nixpkgs
, utils
,
}:
utils.lib.eachDefaultSystem (system:
let
outputs = {
self,
nixpkgs,
utils,
}:
utils.lib.eachDefaultSystem (system: let
pkgs = (import nixpkgs) {
inherit system;
};
in
rec {
in rec {
# `nix develop`
devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [ rustup cargo-edit cargo-fuzz ];
nativeBuildInputs = with pkgs; [rustup cargo-edit cargo-fuzz];
};
});
}