From 2730189c99656e5ae6bd5795a33e8a3225847036 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Wed, 12 Aug 2026 23:27:17 +0200 Subject: feat: Add more shells --- shells/rust/shell.nix | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 shells/rust/shell.nix (limited to 'shells/rust/shell.nix') diff --git a/shells/rust/shell.nix b/shells/rust/shell.nix new file mode 100644 index 0000000..e2f748d --- /dev/null +++ b/shells/rust/shell.nix @@ -0,0 +1,37 @@ +# rocie - An enterprise grocery management system +# +# Copyright (C) 2024 Benedikt Peetz +# Copyright (C) 2025 Benedikt Peetz +# SPDX-License-Identifier: GPL-3.0-or-later +# +# This file is part of Rocie. +# +# You should have received a copy of the License along with this program. +# If not, see . +{ + mkShell, + cargo, + clippy, + rustc, + rustfmt, + mold, + cargo-edit, + cargo-expand, + cargo-flamegraph, +}: +mkShell { + __structuredAttrs = true; + + packages = [ + # rust stuff + cargo + clippy + rustc + rustfmt + mold + + cargo-edit + cargo-expand + cargo-flamegraph + ]; +} -- cgit v1.3.1