# 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 ]; }