mirror of
https://github.com/Xe/xn--ts9h
synced 2024-11-14 13:17:06 +00:00
83e23f46e9
Signed-off-by: Xe <me@christine.website>
15 lines
395 B
Nix
15 lines
395 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, utils }:
|
|
utils.lib.eachDefaultSystem (system:
|
|
let pkgs = nixpkgs.legacyPackages.${system};
|
|
in {
|
|
devShells.default = pkgs.mkShell {
|
|
buildInputs = with pkgs; [ rustc cargo rustfmt rust-analyzer ed ];
|
|
};
|
|
});
|
|
}
|