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.
interlinked/shell.nix

21 lines
316 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-expand
cargo-insta
cargo-make
cargo-outdated
gegl.dev
imagemagick
rustup-toolchain
];
}