summaryrefslogtreecommitdiffstats
path: root/shells
diff options
context:
space:
mode:
Diffstat (limited to 'shells')
-rw-r--r--shells/perf/shell.nix22
-rw-r--r--shells/releng/shell.nix26
-rw-r--r--shells/rust/shell.nix37
-rw-r--r--shells/sqlite/shell.nix21
-rw-r--r--shells/zig/shell.nix (renamed from shells/zig.nix)0
5 files changed, 106 insertions, 0 deletions
diff --git a/shells/perf/shell.nix b/shells/perf/shell.nix
new file mode 100644
index 0000000..4bfaeaf
--- /dev/null
+++ b/shells/perf/shell.nix
@@ -0,0 +1,22 @@
+# rocie - An enterprise grocery management system
+#
+# Copyright (C) 2024 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+# 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 <https://www.gnu.org/licenses/gpl-3.0.txt>.
+{
+ mkShell,
+ hyperfine,
+}:
+mkShell {
+ __structuredAttrs = true;
+
+ packages = [
+ # Perf
+ hyperfine
+ ];
+}
diff --git a/shells/releng/shell.nix b/shells/releng/shell.nix
new file mode 100644
index 0000000..bdc6e09
--- /dev/null
+++ b/shells/releng/shell.nix
@@ -0,0 +1,26 @@
+# rocie - An enterprise grocery management system
+#
+# Copyright (C) 2024 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+# 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 <https://www.gnu.org/licenses/gpl-3.0.txt>.
+{
+ mkShell,
+ reuse,
+ git-bug,
+ cocogitto,
+}:
+mkShell {
+ __structuredAttrs = true;
+
+ packages = [
+ # Releng
+ git-bug
+ reuse
+ cocogitto
+ ];
+}
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 <benedikt.peetz@b-peetz.de>
+# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+# 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 <https://www.gnu.org/licenses/gpl-3.0.txt>.
+{
+ 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
+ ];
+}
diff --git a/shells/sqlite/shell.nix b/shells/sqlite/shell.nix
new file mode 100644
index 0000000..6b168da
--- /dev/null
+++ b/shells/sqlite/shell.nix
@@ -0,0 +1,21 @@
+# rocie - An enterprise grocery management system
+#
+# Copyright (C) 2024 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+# 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 <https://www.gnu.org/licenses/gpl-3.0.txt>.
+{
+ mkShell,
+ sqlite-interactive,
+}:
+mkShell {
+ __structuredAttrs = true;
+
+ packages = [
+ sqlite-interactive
+ ];
+}
diff --git a/shells/zig.nix b/shells/zig/shell.nix
index 3d3d874..3d3d874 100644
--- a/shells/zig.nix
+++ b/shells/zig/shell.nix