summaryrefslogtreecommitdiffstats
path: root/shells/perf
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-08-12 23:27:17 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-08-12 23:27:17 +0200
commit2730189c99656e5ae6bd5795a33e8a3225847036 (patch)
tree85933cb99b07aedd08b3b4499edf3d101f63ecc6 /shells/perf
parentchore: Initial commit (diff)
downloaddevshells-2730189c99656e5ae6bd5795a33e8a3225847036.zip
feat: Add more shells
Diffstat (limited to '')
-rw-r--r--shells/perf/shell.nix22
1 files changed, 22 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
+ ];
+}