From 537ea53363a1e9353a81551e237ae3a03fdf8ce9 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Wed, 12 Aug 2026 23:10:14 +0200 Subject: chore: Initial commit --- shells/zig.nix | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 shells/zig.nix (limited to 'shells/zig.nix') diff --git a/shells/zig.nix b/shells/zig.nix new file mode 100644 index 0000000..3d3d874 --- /dev/null +++ b/shells/zig.nix @@ -0,0 +1,39 @@ +# 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, + pkg-config, + zig, + reuse, + gcc, +}: +mkShell { + __structuredAttrs = true; + + buildInputs = [ + gcc + ]; + + env = { + VARIBALE = "a"; + }; + + nativeBuildInputs = [ + pkg-config + ]; + + packages = [ + zig + + # Releng + reuse + ]; +} -- cgit v1.3.1