From a6ea31dc6854ddca54172b82b9c24747da3f3d75 Mon Sep 17 00:00:00 2001 From: "coderabbitai[bot]" <136622811+coderabbitai[bot]@users.noreply.github.com> Date: Fri, 4 Sep 2026 08:07:34 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20CodeRabbit=20CI=20Fix:=20Fix=20f?= =?UTF-8?q?ailing=20CI=20governance=20checks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- guix.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 guix.scm diff --git a/guix.scm b/guix.scm new file mode 100644 index 0000000..5d93a6b --- /dev/null +++ b/guix.scm @@ -0,0 +1,28 @@ +;; SPDX-License-Identifier: MPL-2.0 +;; Guix development environment. +;; Usage: guix shell -D -f guix.scm + +(use-modules (guix packages) + (guix build-system gnu) + (guix licenses) + (gnu packages base) + (gnu packages bash) + (gnu packages base) + (gnu packages java) + (gnu packages rust) + (gnu packages cmake) + (gnu packages zig) + (gnu packages golang) + (gnu packages node) + (gnu packages python)) + +(package + (name "empty-linter") + (version "0.1.0") + (source #f) + (build-system gnu-build-system) + (inputs (list coreutils bash make openjdk rust cmake zig go node python)) + (synopsis "empty-linter") + (description "empty-linter — part of the hyperpolymath ecosystem.") + (home-page "https://github.com/hyperpolymath/empty-linter") + (license ((@@ (guix licenses) license) "MPL-2.0" "https://github.com/hyperpolymath/palimpsest-license")))