summaryrefslogtreecommitdiffstats
path: root/shells/zig.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shells/zig.nix')
-rw-r--r--shells/zig.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/shells/zig.nix b/shells/zig.nix
deleted file mode 100644
index 3d3d874..0000000
--- a/shells/zig.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-# 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,
- pkg-config,
- zig,
- reuse,
- gcc,
-}:
-mkShell {
- __structuredAttrs = true;
-
- buildInputs = [
- gcc
- ];
-
- env = {
- VARIBALE = "a";
- };
-
- nativeBuildInputs = [
- pkg-config
- ];
-
- packages = [
- zig
-
- # Releng
- reuse
- ];
-}