Bauke/steam-rss
Bauke
/
steam-rss
Archived
1
Fork 0
This repository has been archived on 2025-07-21. You can view files and clone it, but cannot push or open issues or pull requests.
steam-rss/shell.nix

19 lines
284 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
let
rustup-toolchain = rust-bin.fromRustupToolchainFile ./rustup-toolchain.toml;
in
mkShell rec {
packages = [
cargo-audit
cargo-edit
cargo-make
cargo-outdated
cargo-tarpaulin
rustup-toolchain
typos
];
}